All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.core.AutoreleasePool

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

public class AutoreleasePool
extends NativeObject
This class wraps the Objective-C class NSAutoreleasePool.


Constructor Index

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

Method Index

 o addObject(Object)
A wrapper for the - addObject: Objective-C instance method.
 o addObjectToPool(Object)
A wrapper for the + addObject: Objective-C class method.

Constructors

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

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

Methods

 o addObjectToPool
 public static native void addObjectToPool(Object anObject)
A wrapper for the + addObject: Objective-C class method.

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


All Packages  Class Hierarchy  This Package  Previous  Next  Index