blob: 007ee04af9046bba3434158255ddb8a6aed76cbb [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 NSIndexSet extends NSObject {
public NSIndexSet() {
super();
}
public NSIndexSet(int /*long*/ id) {
super(id);
}
public NSIndexSet(id id) {
super(id);
}
public int /*long*/ count() {
return OS.objc_msgSend(this.id, OS.sel_count);
}
public int /*long*/ getIndexes(int[] /*long[]*/ indexBuffer, int /*long*/ bufferSize, int /*long*/ range) {
return OS.objc_msgSend(this.id, OS.sel_getIndexes_maxCount_inIndexRange_, indexBuffer, bufferSize, range);
}
public id initWithIndex(int /*long*/ value) {
int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_initWithIndex_, value);
return result != 0 ? new id(result) : null;
}
public id initWithIndexesInRange(NSRange range) {
int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_initWithIndexesInRange_, range);
return result != 0 ? new id(result) : null;
}
}