|
Jitsi: the OpenSource Java VoIP and Instant Messaging client. | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectnet.java.sip.communicator.util.swing.SwingWorker
public abstract class SwingWorker
Utility class based on the javax.swing.SwingWorker. SwingWorker is an abstract class that you subclass to perform GUI-related work in a dedicated thread. In addition to the original SwingWorker this class takes care of exceptions occured during the execution of the separate thread. It would call a catchException() method in the Swing thread if an exception occurs.
| Constructor Summary | |
|---|---|
SwingWorker()
Start a thread that will call the construct method
and then exit. |
|
| Method Summary | |
|---|---|
void |
catchException(Throwable exception)
Called on the event dispatching thread (not on the worker thread) if an exception has occured during the construct method. |
abstract Object |
construct()
Compute the value to be returned by the get method. |
void |
finished()
Called on the event dispatching thread (not on the worker thread) after the construct method has returned. |
Object |
get()
Return the value created by the construct method. |
protected Object |
getValue()
Get the value produced by the worker thread, or null if it hasn't been constructed yet. |
void |
interrupt()
A new method that interrupts the worker thread. |
void |
start()
Start the worker thread. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public SwingWorker()
construct method
and then exit.
| Method Detail |
|---|
protected Object getValue()
public abstract Object construct()
throws Exception
get method.
Exceptionpublic void finished()
construct method has returned.
public void catchException(Throwable exception)
construct method.
exception - the exception that has occuredpublic void interrupt()
public Object get()
construct method.
Returns null if either the constructing thread or the current
thread was interrupted before a value was produced.
construct methodpublic void start()
|
Jitsi: the OpenSource Java VoIP and Instant Messaging client. | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||