blob: 57998118024a4c2abdb4b23a180db556dd41c7f7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2009 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;
}
}