FileDocCategorySizeDatePackage
ComponentInternals.javaAPI DocAndroid 1.5 API7728Wed May 06 22:41:54 BST 2009org.apache.harmony.awt

ComponentInternals

public abstract class ComponentInternals extends Object
The accessor to AWT private API

Fields Summary
Constructors Summary
Methods Summary
public static org.apache.harmony.awt.ComponentInternalsgetComponentInternals()

return
the ComponentInternals instance to serve the requests

        return ContextStorage.getComponentInternals();
    
public static voidsetComponentInternals(org.apache.harmony.awt.ComponentInternals internals)
This method must be called by AWT to establish the connection

param
internals - implementation of ComponentInternals created by AWT

        ContextStorage.setComponentInternals(internals);
    
public abstract voidsetDesktopProperty(java.lang.String name, java.lang.Object value)
Makes it possible to call protected Toolkit.setDesktopProperty() method from any class outside of java.awt package

public abstract voidshutdown()
Terminate event dispatch thread, completely destroy AWT context.
Intended for multi-context mode, in single-context mode does nothing.