Package jadex.bpmn.model.task
Interface ITaskPropertyGui
-
- All Known Implementing Classes:
MethodCallTask.ServiceCallTaskGui
,ServiceCallTask.ServiceCallTaskGui
,ServicePoolTask.ServicePoolTaskGui
public interface ITaskPropertyGui
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.swing.JComponent
getComponent()
The component to be shown in the gui.void
init(IModelContainer container, MActivity task, java.lang.ClassLoader cl)
Once called to init the component.void
shutdown()
Informs the panel that it should stop all its computation.
-
-
-
Method Detail
-
init
void init(IModelContainer container, MActivity task, java.lang.ClassLoader cl)
Once called to init the component.
-
shutdown
void shutdown()
Informs the panel that it should stop all its computation.
-
getComponent
javax.swing.JComponent getComponent()
The component to be shown in the gui.- Returns:
- The component to be displayed.
-
-