blob: 87c0e098b9a72833ceb3313de8dd6d77a2857bdb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2012 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.internal.cocoa;
public class NSArray extends NSObject {
public NSArray() {
super();
}
public NSArray(long id) {
super(id);
}
public NSArray(id id) {
super(id);
}
public static NSArray array() {
long result = OS.objc_msgSend(OS.class_NSArray, OS.sel_array);
return result != 0 ? new NSArray(result) : null;
}
public static NSArray arrayWithObject(id anObject) {
long result = OS.objc_msgSend(OS.class_NSArray, OS.sel_arrayWithObject_, anObject != null ? anObject.id : 0);
return result != 0 ? new NSArray(result) : null;
}
public boolean containsObject(id anObject) {
return OS.objc_msgSend_bool(this.id, OS.sel_containsObject_, anObject != null ? anObject.id : 0);
}
public long count() {
return OS.objc_msgSend(this.id, OS.sel_count);
}
public long indexOfObjectIdenticalTo(id anObject) {
return OS.objc_msgSend(this.id, OS.sel_indexOfObjectIdenticalTo_, anObject != null ? anObject.id : 0);
}
public id objectAtIndex(long index) {
long result = OS.objc_msgSend(this.id, OS.sel_objectAtIndex_, index);
return result != 0 ? new id(result) : null;
}
}