Methods Summary |
---|
public void | awake()
synchronized (eventMonitor) {
eventMonitor.notify();
}
|
public void | dispatchEvent()
//???AWT
System.out.println(getClass()+": empty method called");
|
public long | getJavaWindow()
//???AWT
System.out.println(getClass()+": empty method called");
return 0;
|
public void | performLater(Task task)
//???AWT
System.out.println(getClass()+": empty method called");
|
public void | performTask(Task task)
//???AWT
System.out.println(getClass()+": empty method called");
|
public boolean | waitEvent()
while (isEmpty() ) {
synchronized (eventMonitor) {
try {
eventMonitor.wait(1000);
} catch (InterruptedException ignore) {
}
}
}
return false;
|