FileDocCategorySizeDatePackage
AndroidNativeEventQueue.javaAPI DocAndroid 1.5 API1946Wed May 06 22:41:54 BST 2009com.android.internal.awt

AndroidNativeEventQueue

public class AndroidNativeEventQueue extends org.apache.harmony.awt.wtk.NativeEventQueue

Fields Summary
private Object
eventMonitor
Constructors Summary
public AndroidNativeEventQueue()

        super();
        eventMonitor = getEventMonitor();
    
Methods Summary
public voidawake()

        synchronized (eventMonitor) {
            eventMonitor.notify();
        }
    
public voiddispatchEvent()

        //???AWT
        System.out.println(getClass()+": empty method called");
    
public longgetJavaWindow()

        //???AWT
        System.out.println(getClass()+": empty method called");
        return 0;
    
public voidperformLater(Task task)

        //???AWT
        System.out.println(getClass()+": empty method called");
    
public voidperformTask(Task task)

        //???AWT
        System.out.println(getClass()+": empty method called");
    
public booleanwaitEvent()

        while (isEmpty() ) {
            synchronized (eventMonitor) {
                try {
                    eventMonitor.wait(1000);
                } catch (InterruptedException ignore) {
                }
            }
        }
        return false;