All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.core.RunLoop

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

public class RunLoop
extends NativeObject
This class wraps the Objective-C class NSRunLoop.


Constructor Index

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

Method Index

 o acceptInputForMode(String, Date)
A wrapper for the - acceptInputForMode:beforeDate: Objective-C instance method.
 o addPort(Port, String)
A wrapper for the - addPort:forMode: Objective-C instance method.
 o addTimer(Timer, String)
A wrapper for the - addTimer:forMode: Objective-C instance method.
 o cancelPerformSelectorWithTarget(Selector, Object, Object)
A wrapper for the - cancelPerformSelector:target:argument: Objective-C instance method.
 o configureAsServer()
A wrapper for the - configureAsServer Objective-C instance method.
 o currentMode()
A wrapper for the - currentMode Objective-C instance method.
 o currentRunLoop()
A wrapper for the + currentRunLoop Objective-C class method.
 o limitDateForMode(String)
A wrapper for the - limitDateForMode: Objective-C instance method.
 o performSelectorWithTarget(Selector, Object, Object, int, Array)
A wrapper for the - performSelector:target:argument:order:modes: Objective-C instance method.
 o removePort(Port, String)
A wrapper for the - removePort:forMode: Objective-C instance method.
 o run()
A wrapper for the - run Objective-C instance method.
 o runUntilDate(Date)
A wrapper for the - runUntilDate: Objective-C instance method.
 o runUntilDateForMode(String, Date)
A wrapper for the - runMode:beforeDate: Objective-C instance method.

Constructors

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

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

Methods

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

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

 o addTimer
 public native void addTimer(Timer timer,
                             String mode)
A wrapper for the - addTimer:forMode: Objective-C instance method.

 o addPort
 public native void addPort(Port aPort,
                            String mode)
A wrapper for the - addPort:forMode: Objective-C instance method.

 o removePort
 public native void removePort(Port aPort,
                               String mode)
A wrapper for the - removePort:forMode: Objective-C instance method.

 o limitDateForMode
 public native Date limitDateForMode(String mode)
A wrapper for the - limitDateForMode: Objective-C instance method.

 o acceptInputForMode
 public native void acceptInputForMode(String mode,
                                       Date limitDate)
A wrapper for the - acceptInputForMode:beforeDate: Objective-C instance method.

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

 o runUntilDate
 public native void runUntilDate(Date limitDate)
A wrapper for the - runUntilDate: Objective-C instance method.

 o runUntilDateForMode
 public native boolean runUntilDateForMode(String mode,
                                           Date limitDate)
A wrapper for the - runMode:beforeDate: Objective-C instance method.

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

 o performSelectorWithTarget
 public native void performSelectorWithTarget(Selector aSelector,
                                              Object target,
                                              Object arg,
                                              int order,
                                              Array modes)
A wrapper for the - performSelector:target:argument:order:modes: Objective-C instance method.

 o cancelPerformSelectorWithTarget
 public native void cancelPerformSelectorWithTarget(Selector aSelector,
                                                    Object target,
                                                    Object arg)
A wrapper for the - cancelPerformSelector:target:argument: Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index