Package org.eclipse.swt.internal.cocoa
Class NSMutableArray
- java.lang.Object
-
- org.eclipse.swt.internal.cocoa.id
-
- org.eclipse.swt.internal.cocoa.NSObject
-
- org.eclipse.swt.internal.cocoa.NSArray
-
- org.eclipse.swt.internal.cocoa.NSMutableArray
-
public class NSMutableArray extends NSArray
-
-
Constructor Summary
Constructors Constructor Description NSMutableArray()
NSMutableArray(long id)
NSMutableArray(id id)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addObject(id anObject)
void
addObjectsFromArray(NSArray otherArray)
static NSMutableArray
array()
static NSMutableArray
arrayWithCapacity(long numItems)
static NSMutableArray
arrayWithObject(id anObject)
NSMutableArray
initWithCapacity(long numItems)
void
insertObject(id anObject, long index)
void
removeLastObject()
void
removeObject(id anObject)
void
removeObjectAtIndex(long index)
void
removeObjectIdenticalTo(id anObject)
-
Methods inherited from class org.eclipse.swt.internal.cocoa.NSArray
containsObject, count, indexOfObjectIdenticalTo, objectAtIndex
-
Methods inherited from class org.eclipse.swt.internal.cocoa.NSObject
accessibilityAttributeValue, accessibilitySetOverrideValue, addEventListener, alloc, autorelease, cancelAuthenticationChallenge, className, conformsToProtocol, copy, description, draggedImage, draggingDestinationWindow, draggingLocation, draggingPasteboard, draggingSourceOperationMask, handleEvent, init, isEqual, isKindOfClass, mutableCopy, outlineView, outlineView, outlineView, performSelector, performSelectorOnMainThread, readSelectionFromPasteboard, release, respondsToSelector, retain, retainCount, setValue, superclass, tableView, tableView, useCredential, valueForKey, writeSelectionToPasteboard
-
Methods inherited from class org.eclipse.swt.internal.cocoa.id
equals, hashCode, objc_getClass, toString
-
-
-
-
Constructor Detail
-
NSMutableArray
public NSMutableArray()
-
NSMutableArray
public NSMutableArray(long id)
-
NSMutableArray
public NSMutableArray(id id)
-
-
Method Detail
-
addObject
public void addObject(id anObject)
-
addObjectsFromArray
public void addObjectsFromArray(NSArray otherArray)
-
arrayWithCapacity
public static NSMutableArray arrayWithCapacity(long numItems)
-
initWithCapacity
public NSMutableArray initWithCapacity(long numItems)
-
insertObject
public void insertObject(id anObject, long index)
-
removeLastObject
public void removeLastObject()
-
removeObject
public void removeObject(id anObject)
-
removeObjectAtIndex
public void removeObjectAtIndex(long index)
-
removeObjectIdenticalTo
public void removeObjectIdenticalTo(id anObject)
-
array
public static NSMutableArray array()
-
arrayWithObject
public static NSMutableArray arrayWithObject(id anObject)
-
-