All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----com.apple.alpha.core.NativeObject | +----com.apple.alpha.core.Array | +----com.apple.alpha.core.MutableArray
NSMutableArray
.
[[NSMutableArray
alloc] init]
.
- initWithArray:
on a newly allocated object.
- initWithCoder:
on a newly allocated object.
- initWithCapacity:
on a newly allocated object.
- initWithContentsOfFile:
on a newly allocated object.
- addObject:
Objective-C instance method.
- addObjectsFromArray:
Objective-C instance method.
+ arrayWithCapacity:
Objective-C class method.
- insertObject:atIndex:
Objective-C instance method.
- removeAllObjects
Objective-C instance method.
- removeObjectIdenticalTo:
Objective-C instance method.
- removeObjectIdenticalTo:inRange:
Objective-C instance method.
- removeLastObject
Objective-C instance method.
- removeObject:
Objective-C instance method.
- removeObjectAtIndex:
Objective-C instance method.
- removeObject:inRange:
Objective-C instance method.
- removeObjectsInArray:
Objective-C instance method.
- removeObjectsInRange:
Objective-C instance method.
- replaceObjectAtIndex:withObject:
Objective-C instance method.
- replaceObjectsInRange:withObjectsFromArray:
Objective-C instance method.
- replaceObjectsInRange:withObjectsFromArray:range:
Objective-C instance method.
- setArray:
Objective-C instance method.
- sortUsingSelector:
Objective-C instance method.
public static final int NotFound
public MutableArray(Object objects[])
public MutableArray(Enumeration e)
public MutableArray(Vector v)
protected MutableArray(boolean shouldAllocate, int objcObject)
public MutableArray()
[[NSMutableArray
alloc] init]
.
public MutableArray(Coder aDecoder)
- initWithCoder:
on a newly allocated object.
public MutableArray(Array array)
- initWithArray:
on a newly allocated object.
public MutableArray(String path)
- initWithContentsOfFile:
on a newly allocated object.
public MutableArray(int numItems)
- initWithCapacity:
on a newly allocated object.
public native void addObject(Object anObject)
- addObject:
Objective-C instance method.
public native void insertObjectAtIndex(Object anObject, int index)
- insertObject:atIndex:
Objective-C instance method.
public native void removeLastObject()
- removeLastObject
Objective-C instance method.
public native void removeObjectAtIndex(int index)
- removeObjectAtIndex:
Objective-C instance method.
public native void replaceObjectAtIndex(int index, Object anObject)
- replaceObjectAtIndex:withObject:
Objective-C instance method.
public native void addObjectsFromArray(Array otherArray)
- addObjectsFromArray:
Objective-C instance method.
public native void removeAllObjects()
- removeAllObjects
Objective-C instance method.
public native void removeObjectInRange(Object anObject, Range range)
- removeObject:inRange:
Objective-C instance method.
public native void removeObject(Object anObject)
- removeObject:
Objective-C instance method.
public native void removeIdenticalObjectInRange(Object anObject, Range range)
- removeObjectIdenticalTo:inRange:
Objective-C instance method.
public native void removeIdenticalObject(Object anObject)
- removeObjectIdenticalTo:
Objective-C instance method.
public native void removeObjectsInArray(Array otherArray)
- removeObjectsInArray:
Objective-C instance method.
public native void removeObjectsInRange(Range range)
- removeObjectsInRange:
Objective-C instance method.
public native void replaceObjectsInRangeWithObjectsFromArrayAndRange(Range range, Array otherArray, Range otherRange)
- replaceObjectsInRange:withObjectsFromArray:range:
Objective-C instance method.
public native void replaceObjectsInRangeWithObjectsFromArray(Range range, Array otherArray)
- replaceObjectsInRange:withObjectsFromArray:
Objective-C instance method.
public native void setArray(Array otherArray)
- setArray:
Objective-C instance method.
public native void sortUsingSelector(Selector comparator)
- sortUsingSelector:
Objective-C instance method.
public static native Object arrayWithCapacity(int numItems)
+ arrayWithCapacity:
Objective-C class method.
All Packages Class Hierarchy This Package Previous Next Index