org.eclipse.swt.graphics
Interface Drawable

All Known Implementing Classes:
Control, Device, Image

public interface Drawable

Unsafe:


Method Summary
 void internal_dispose_GC(int handle, GCData data)
          Suppressed: Invokes platform specific functionality to dispose a GC handle.
 int internal_new_GC(GCData data)
          Suppressed: Invokes platform specific functionality to allocate a new GC handle.
 

Method Detail

internal_new_GC

public int internal_new_GC(GCData data)
Suppressed: Invokes platform specific functionality to allocate a new GC handle.

IMPORTANT: This method is not part of the public API for Drawable. It is marked public only so that it can be shared within the packages provided by SWT. It is not available on all platforms, and should never be called from application code.

Parameters:
data - the platform specific GC data
Returns:
the platform specific GC handle

internal_dispose_GC

public void internal_dispose_GC(int handle,
                                GCData data)
Suppressed: Invokes platform specific functionality to dispose a GC handle.

IMPORTANT: This method is not part of the public API for Drawable. It is marked public only so that it can be shared within the packages provided by SWT. It is not available on all platforms, and should never be called from application code.

Parameters:
handle - the platform specific GC handle
data - the platform specific GC data


comments?