All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.DPSContext

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.GraphicsContext
                   |
                   +----com.apple.alpha.app.DPSContext

public class DPSContext
extends GraphicsContext
This class wraps the Objective-C class NSDPSContext.


Constructor Index

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

Method Index

 o areAllContextsOutputTraced()
A wrapper for the + areAllContextsOutputTraced Objective-C class method.
 o areAllContextsSynchronized()
A wrapper for the + areAllContextsSynchronized Objective-C class method.
 o awaitReturnValues()
A wrapper for the - awaitReturnValues Objective-C instance method.
 o chainChildContext(DPSContext)
A wrapper for the - chainChildContext: Objective-C instance method.
 o childContext()
A wrapper for the - childContext Objective-C instance method.
 o currentContext()
A wrapper for the + currentContext Objective-C class method.
 o flush()
A wrapper for the - flush Objective-C instance method.
 o interruptExecution()
A wrapper for the - interruptExecution Objective-C instance method.
 o isDrawingToScreen()
A wrapper for the - isDrawingToScreen Objective-C instance method.
 o isOutputTraced()
A wrapper for the - isOutputTraced Objective-C instance method.
 o isSynchronized()
A wrapper for the - isSynchronized Objective-C instance method.
 o isWaitCursorEnabled()
A wrapper for the - isWaitCursorEnabled Objective-C instance method.
 o mutableData()
A wrapper for the - mutableData Objective-C instance method.
 o notifyObjectWhenFinishedExecuting(DPSContextNotification)
A wrapper for the - notifyObjectWhenFinishedExecuting: Objective-C instance method.
 o parentContext()
A wrapper for the - parentContext Objective-C instance method.
 o resetCommunication()
A wrapper for the - resetCommunication Objective-C instance method.
 o setAllContextsOutputTraced(boolean)
A wrapper for the + setAllContextsOutputTraced: Objective-C class method.
 o setAllContextsSynchronized(boolean)
A wrapper for the + setAllContextsSynchronized: Objective-C class method.
 o setCurrentContext(GraphicsContext)
A wrapper for the + setCurrentContext: Objective-C class method.
 o setOutputTraced(boolean)
A wrapper for the - setOutputTraced: Objective-C instance method.
 o setSynchronized(boolean)
A wrapper for the - setSynchronized: Objective-C instance method.
 o setWaitCursorEnabled(boolean)
A wrapper for the - setWaitCursorEnabled: Objective-C instance method.
 o startWaitCursorTimer()
A wrapper for the - startWaitCursorTimer Objective-C instance method.
 o synchronize()
A wrapper for the - wait Objective-C instance method.
 o unchainContext()
A wrapper for the - unchainContext Objective-C instance method.
 o updateNameMap()
A wrapper for the - updateNameMap Objective-C instance method.
 o writeData(Data)
A wrapper for the - writeData: Objective-C instance method.
 o writePostScriptWithLanguageEncodingConversion(Data)
A wrapper for the - writePostScriptWithLanguageEncodingConversion: Objective-C instance method.

Constructors

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

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

Methods

 o setAllContextsSynchronized
 public static native void setAllContextsSynchronized(boolean flag)
A wrapper for the + setAllContextsSynchronized: Objective-C class method.

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

 o setAllContextsOutputTraced
 public static native void setAllContextsOutputTraced(boolean flag)
A wrapper for the + setAllContextsOutputTraced: Objective-C class method.

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

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

 o setCurrentContext
 public static native void setCurrentContext(GraphicsContext context)
A wrapper for the + setCurrentContext: Objective-C class method.

 o mutableData
 public native MutableData mutableData()
A wrapper for the - mutableData Objective-C instance method.

 o isDrawingToScreen
 public native boolean isDrawingToScreen()
A wrapper for the - isDrawingToScreen Objective-C instance method.

Overrides:
isDrawingToScreen in class GraphicsContext
 o awaitReturnValues
 public native void awaitReturnValues()
A wrapper for the - awaitReturnValues Objective-C instance method.

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

 o writeData
 public native void writeData(Data buf)
A wrapper for the - writeData: Objective-C instance method.

 o writePostScriptWithLanguageEncodingConversion
 public native void writePostScriptWithLanguageEncodingConversion(Data buf)
A wrapper for the - writePostScriptWithLanguageEncodingConversion: Objective-C instance method.

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

Overrides:
flush in class GraphicsContext
 o resetCommunication
 public native void resetCommunication()
A wrapper for the - resetCommunication Objective-C instance method.

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

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

Overrides:
synchronize in class GraphicsContext
 o notifyObjectWhenFinishedExecuting
 public native void notifyObjectWhenFinishedExecuting(DPSContextNotification object)
A wrapper for the - notifyObjectWhenFinishedExecuting: Objective-C instance method.

 o chainChildContext
 public native void chainChildContext(DPSContext child)
A wrapper for the - chainChildContext: Objective-C instance method.

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

 o childContext
 public native DPSContext childContext()
A wrapper for the - childContext Objective-C instance method.

 o parentContext
 public native DPSContext parentContext()
A wrapper for the - parentContext Objective-C instance method.

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

 o setWaitCursorEnabled
 public native void setWaitCursorEnabled(boolean flag)
A wrapper for the - setWaitCursorEnabled: Objective-C instance method.

 o isWaitCursorEnabled
 public native boolean isWaitCursorEnabled()
A wrapper for the - isWaitCursorEnabled Objective-C instance method.

 o setSynchronized
 public native void setSynchronized(boolean flag)
A wrapper for the - setSynchronized: Objective-C instance method.

 o isSynchronized
 public native boolean isSynchronized()
A wrapper for the - isSynchronized Objective-C instance method.

 o setOutputTraced
 public native void setOutputTraced(boolean flag)
A wrapper for the - setOutputTraced: Objective-C instance method.

 o isOutputTraced
 public native boolean isOutputTraced()
A wrapper for the - isOutputTraced Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index