|
JHotDraw 7.1 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jhotdraw.gui.Worker
public abstract class Worker
This is an abstract class that you subclass to perform GUI-related work in a dedicated event dispatcher.
This class is similar to SwingWorker but less complex. Like a SwingWorker it can run using an an internal worker thread but it can also be like a Runnable object.
Constructor Summary | |
---|---|
Worker()
|
Method Summary | |
---|---|
abstract java.lang.Object |
construct()
Compute the value to be returned by the get method. |
abstract void |
finished(java.lang.Object value)
Called on the event dispatching thread (not on the worker thread) after the construct method has returned. |
protected java.lang.Object |
getValue()
Get the value produced by the worker thread, or null if it hasn't been constructed yet. |
void |
run()
Calls #construct on the current thread and invokes #finished on the AWT event dispatcher thread. |
void |
start()
Starts the Worker on an internal worker thread. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Worker()
Method Detail |
---|
public final void run()
run
in interface java.lang.Runnable
public abstract java.lang.Object construct()
get
method.
public abstract void finished(java.lang.Object value)
construct
method has returned.
value
- The return value of the construct method.protected java.lang.Object getValue()
public void start()
|
Copyright 1996-2007 (c) JHotDraw.org. Some rights reserved. |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |