All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.core.Set

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.core.Set

public class Set
extends NativeObject
This class wraps the Objective-C class NSSet.


Constructor Index

 o Set()
This default constructor is equivalent to Objective-C's [[NSSet alloc] init].
 o Set(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.

Method Index

 o allObjects()
A wrapper for the - allObjects Objective-C instance method.
 o anyObject()
A wrapper for the - anyObject Objective-C instance method.
 o containsObject(Object)
A wrapper for the - containsObject: Objective-C instance method.
 o count()
A wrapper for the - count Objective-C instance method.
 o descriptionWithLocale(Dictionary)
A wrapper for the - descriptionWithLocale: Objective-C instance method.
 o intersectsSet(Set)
A wrapper for the - intersectsSet: Objective-C instance method.
 o isEqualToSet(Set)
A wrapper for the - isEqualToSet: Objective-C instance method.
 o isSubsetOfSet(Set)
A wrapper for the - isSubsetOfSet: Objective-C instance method.
 o makeObjectsPerformMethod(Selector)
A wrapper for the - makeObjectsPerformSelector: Objective-C instance method.
 o makeObjectsPerformMethodWithObject(Selector, Object)
A wrapper for the - makeObjectsPerformSelector:withObject: Objective-C instance method.
 o member(Object)
A wrapper for the - member: Objective-C instance method.
 o objectEnumerator()
A wrapper for the - objectEnumerator Objective-C instance method.
 o set()
A wrapper for the + set Objective-C class method.
 o setWithArray(Array)
A wrapper for the + setWithArray: Objective-C class method.
 o setWithObject(Object)
A wrapper for the + setWithObject: Objective-C class method.
 o setWithSet(Set)
A wrapper for the + setWithSet: Objective-C class method.
 o toString()
A wrapper for the - description Objective-C instance method.

Constructors

 o Set
 protected Set(boolean shouldAllocate,
               int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o Set
 public Set()
This default constructor is equivalent to Objective-C's [[NSSet alloc] init].

Methods

 o count
 public native int count()
A wrapper for the - count Objective-C instance method.

 o member
 public native Object member(Object object)
A wrapper for the - member: Objective-C instance method.

 o objectEnumerator
 public native Enumerator objectEnumerator()
A wrapper for the - objectEnumerator Objective-C instance method.

 o allObjects
 public native Array allObjects()
A wrapper for the - allObjects Objective-C instance method.

 o anyObject
 public native Object anyObject()
A wrapper for the - anyObject Objective-C instance method.

 o containsObject
 public native boolean containsObject(Object anObject)
A wrapper for the - containsObject: Objective-C instance method.

 o toString
 public native String toString()
A wrapper for the - description Objective-C instance method.

Overrides:
toString in class NativeObject
 o descriptionWithLocale
 public native String descriptionWithLocale(Dictionary locale)
A wrapper for the - descriptionWithLocale: Objective-C instance method.

 o intersectsSet
 public native boolean intersectsSet(Set otherSet)
A wrapper for the - intersectsSet: Objective-C instance method.

 o isEqualToSet
 public native boolean isEqualToSet(Set otherSet)
A wrapper for the - isEqualToSet: Objective-C instance method.

 o isSubsetOfSet
 public native boolean isSubsetOfSet(Set otherSet)
A wrapper for the - isSubsetOfSet: Objective-C instance method.

 o makeObjectsPerformMethod
 public native void makeObjectsPerformMethod(Selector aSelector)
A wrapper for the - makeObjectsPerformSelector: Objective-C instance method.

 o makeObjectsPerformMethodWithObject
 public native void makeObjectsPerformMethodWithObject(Selector aSelector,
                                                       Object argument)
A wrapper for the - makeObjectsPerformSelector:withObject: Objective-C instance method.

 o set
 public static native Object set()
A wrapper for the + set Objective-C class method.

 o setWithArray
 public static native Object setWithArray(Array array)
A wrapper for the + setWithArray: Objective-C class method.

 o setWithObject
 public static native Object setWithObject(Object object)
A wrapper for the + setWithObject: Objective-C class method.

 o setWithSet
 public static native Object setWithSet(Set set)
A wrapper for the + setWithSet: Objective-C class method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index