blob: f6654ff6673fee6add34cd63ef5d5cc045d56806 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.internal.cocoa;
public class NSError extends NSObject {
public NSError() {
super();
}
public NSError(int /*long*/ id) {
super(id);
}
public NSError(id id) {
super(id);
}
public int /*long*/ code() {
return OS.objc_msgSend(this.id, OS.sel_code);
}
public NSString localizedDescription() {
int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_localizedDescription);
return result != 0 ? new NSString(result) : null;
}
public NSDictionary userInfo() {
int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_userInfo);
return result != 0 ? new NSDictionary(result) : null;
}
}