summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSIndexSet.java
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSIndexSet.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSIndexSet.java53
1 files changed, 0 insertions, 53 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSIndexSet.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSIndexSet.java
deleted file mode 100644
index a2b132fe7f..0000000000
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSIndexSet.java
+++ /dev/null
@@ -1,53 +0,0 @@
-/*******************************************************************************
- * 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 NSIndexSet extends NSObject {
-
-public NSIndexSet() {
- super();
-}
-
-public NSIndexSet(int /*long*/ id) {
- super(id);
-}
-
-public NSIndexSet(id id) {
- super(id);
-}
-
-public boolean containsIndex(int /*long*/ value) {
- return OS.objc_msgSend_bool(this.id, OS.sel_containsIndex_, value);
-}
-
-public int /*long*/ count() {
- return OS.objc_msgSend(this.id, OS.sel_count);
-}
-
-public int /*long*/ firstIndex() {
- return OS.objc_msgSend(this.id, OS.sel_firstIndex);
-}
-
-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 NSIndexSet initWithIndex(int /*long*/ value) {
- int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_initWithIndex_, value);
- return result == this.id ? this : (result != 0 ? new NSIndexSet(result) : null);
-}
-
-public NSIndexSet initWithIndexesInRange(NSRange range) {
- int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_initWithIndexesInRange_, range);
- return result == this.id ? this : (result != 0 ? new NSIndexSet(result) : null);
-}
-
-}