Package org.jdesktop.application
Class TaskEvent<T>
- java.lang.Object
-
- java.util.EventObject
-
- org.jdesktop.application.TaskEvent<T>
-
- Type Parameters:
T
-
- All Implemented Interfaces:
java.io.Serializable
public class TaskEvent<T> extends java.util.EventObject
An encapsulation of the value produced one of theTask
execution methods:doInBackground()
,process
,done
. The source of aTaskEvent
is theTask
that produced the value.- See Also:
TaskListener
,Task
, Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
getValue()
Returns the value this event represents.
-
-
-
Method Detail
-
getValue
public final T getValue()
Returns the value this event represents.- Returns:
- the
value
constructor argument.
-
-