Generated by
JDiff

Class org.jhotdraw.gui.Worker

Added Methods
void done(T) Called on the event dispatching thread (not on the worker thread) after the construct method has returned without throwing an error.
void failed(Throwable) Called on the event dispatching thread (not on the worker thread) after the construct method has thrown an error.
Throwable getError() Get the error produced by the worker thread, or null if it hasn't thrown one.
 

Changed Methods
T construct() Change in return type from Object to T.
Change in exceptions thrown from no exceptions to java.lang.Exception.
Change of visibility from public to protected.
Compute the value to be returned by the get method.
void finished() Change in signature from Object to void.
Changed from abstract to non-abstract. Change of visibility from public to protected.
Called on the event dispatching thread (not on the worker thread) after the construct method has finished and after done() or failed() has been invoked.
T getValue() Change in return type from Object to T.
Get the value produced by the worker thread, or null if it hasn't been constructed yet.