gnu.gnustep.base
Class NSMutableSet

java.lang.Object
  |
  +--gnu.gnustep.base.NSObject
        |
        +--gnu.gnustep.base.NSSet
              |
              +--gnu.gnustep.base.NSMutableSet
All Implemented Interfaces:
java.lang.Cloneable
Direct Known Subclasses:
NSCountedSet

public class NSMutableSet
extends NSSet

This class wraps the Objective-C class NSMutableSet. It was automatically generated by JIGS WrapCreator.


Constructor Summary
NSMutableSet()
          Wraps the Objective-C method init
NSMutableSet(long arg0)
          Wraps the Objective-C method initWithCapacity:
NSMutableSet(NSArray arg0)
          Wraps the Objective-C method initWithArray:
NSMutableSet(NSSet arg0)
          Wraps the Objective-C method initWithSet:
NSMutableSet(NSSet arg0, boolean arg1)
          Wraps the Objective-C method initWithSet:copyItems:
NSMutableSet(java.lang.Object[] objects)
          Creates a new set containing the objects in the Java array objects.
 
Method Summary
 void addObject(java.lang.Object arg0)
          Wraps the Objective-C method addObject:
 void addObjectsFromArray(NSArray arg0)
          Wraps the Objective-C method addObjectsFromArray:
 void intersectSet(NSSet arg0)
          Wraps the Objective-C method intersectSet:
 void minusSet(NSSet arg0)
          Wraps the Objective-C method minusSet:
 void removeAllObjects()
          Wraps the Objective-C method removeAllObjects
 void removeObject(java.lang.Object arg0)
          Wraps the Objective-C method removeObject:
 void unionSet(NSSet arg0)
          Wraps the Objective-C method unionSet:
 
Methods inherited from class gnu.gnustep.base.NSSet
allObjects, anyObject, containsObject, count, intersectsSet, isEqualToSet, isSubsetOfSet, makeObjectsPerform, makeObjectsPerform, member, objectEnumerator
 
Methods inherited from class gnu.gnustep.base.NSObject
clone, description, equals, hashCode, mutableClone, releaseObject, retainObject, takeValueForKey, toString, valueForKey
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NSMutableSet

public NSMutableSet()
Wraps the Objective-C method init

NSMutableSet

public NSMutableSet(long arg0)
Wraps the Objective-C method initWithCapacity:

NSMutableSet

public NSMutableSet(NSArray arg0)
Wraps the Objective-C method initWithArray:

NSMutableSet

public NSMutableSet(NSSet arg0)
Wraps the Objective-C method initWithSet:

NSMutableSet

public NSMutableSet(NSSet arg0,
                    boolean arg1)
Wraps the Objective-C method initWithSet:copyItems:

NSMutableSet

public NSMutableSet(java.lang.Object[] objects)
Creates a new set containing the objects in the Java array objects.
Method Detail

addObject

public void addObject(java.lang.Object arg0)
Wraps the Objective-C method addObject:

removeObject

public void removeObject(java.lang.Object arg0)
Wraps the Objective-C method removeObject:

removeAllObjects

public void removeAllObjects()
Wraps the Objective-C method removeAllObjects

addObjectsFromArray

public void addObjectsFromArray(NSArray arg0)
Wraps the Objective-C method addObjectsFromArray:

unionSet

public void unionSet(NSSet arg0)
Wraps the Objective-C method unionSet:

minusSet

public void minusSet(NSSet arg0)
Wraps the Objective-C method minusSet:

intersectSet

public void intersectSet(NSSet arg0)
Wraps the Objective-C method intersectSet: