All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.core.MutableCharacterSet

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

public class MutableCharacterSet
extends CharacterSet
This class wraps the Objective-C class NSMutableCharacterSet.


Constructor Index

 o MutableCharacterSet()
This default constructor is equivalent to Objective-C's [[NSMutableCharacterSet alloc] init].
 o MutableCharacterSet(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.
 o MutableCharacterSet(Coder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.

Method Index

 o addCharactersInRange(Range)
A wrapper for the - addCharactersInRange: Objective-C instance method.
 o addCharactersInString(String)
A wrapper for the - addCharactersInString: Objective-C instance method.
 o formIntersectionWithCharacterSet(CharacterSet)
A wrapper for the - formIntersectionWithCharacterSet: Objective-C instance method.
 o formUnionWithCharacterSet(CharacterSet)
A wrapper for the - formUnionWithCharacterSet: Objective-C instance method.
 o invert()
A wrapper for the - invert Objective-C instance method.
 o removeCharactersInRange(Range)
A wrapper for the - removeCharactersInRange: Objective-C instance method.
 o removeCharactersInString(String)
A wrapper for the - removeCharactersInString: Objective-C instance method.

Constructors

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

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

 o MutableCharacterSet
 public MutableCharacterSet(Coder aDecoder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.

Methods

 o addCharactersInRange
 public native void addCharactersInRange(Range aRange)
A wrapper for the - addCharactersInRange: Objective-C instance method.

 o removeCharactersInRange
 public native void removeCharactersInRange(Range aRange)
A wrapper for the - removeCharactersInRange: Objective-C instance method.

 o addCharactersInString
 public native void addCharactersInString(String aString)
A wrapper for the - addCharactersInString: Objective-C instance method.

 o removeCharactersInString
 public native void removeCharactersInString(String aString)
A wrapper for the - removeCharactersInString: Objective-C instance method.

 o formUnionWithCharacterSet
 public native void formUnionWithCharacterSet(CharacterSet otherSet)
A wrapper for the - formUnionWithCharacterSet: Objective-C instance method.

 o formIntersectionWithCharacterSet
 public native void formIntersectionWithCharacterSet(CharacterSet otherSet)
A wrapper for the - formIntersectionWithCharacterSet: Objective-C instance method.

 o invert
 public native void invert()
A wrapper for the - invert Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index