Package jadex.bpmn.runtime.task
Class ServiceCallTask.ServiceCallTaskGui
- java.lang.Object
-
- jadex.bpmn.runtime.task.ServiceCallTask.ServiceCallTaskGui
-
- All Implemented Interfaces:
ITaskPropertyGui
- Enclosing class:
- ServiceCallTask
public static class ServiceCallTask.ServiceCallTaskGui extends java.lang.Object implements ITaskPropertyGui
-
-
Field Summary
Fields Modifier and Type Field Description protected javax.swing.JComboBox
cbmethodname
The combo box for the method name.protected AutoCompleteCombo
cbranking
The combo box for the ranking.protected javax.swing.JComboBox
cbsername
The combo box for the service name.protected java.lang.ClassLoader
cl
The classloader.protected IModelContainer
container
The container.protected IModelInfo
model
The model.protected javax.swing.JPanel
panel
The panel.protected MActivity
task
The task.
-
Constructor Summary
Constructors Constructor Description ServiceCallTaskGui()
-
Method Summary
All Methods Instance Methods Concrete 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.protected void
refresh()
void
shutdown()
Informs the panel that it should stop all its computation.
-
-
-
Field Detail
-
panel
protected javax.swing.JPanel panel
The panel.
-
model
protected IModelInfo model
The model.
-
task
protected MActivity task
The task.
-
cl
protected java.lang.ClassLoader cl
The classloader.
-
cbsername
protected javax.swing.JComboBox cbsername
The combo box for the service name.
-
cbmethodname
protected javax.swing.JComboBox cbmethodname
The combo box for the method name.
-
cbranking
protected AutoCompleteCombo cbranking
The combo box for the ranking.
-
container
protected IModelContainer container
The container.
-
-
Method Detail
-
init
public void init(IModelContainer container, MActivity task, java.lang.ClassLoader cl)
Once called to init the component.- Specified by:
init
in interfaceITaskPropertyGui
-
refresh
protected void refresh()
-
shutdown
public void shutdown()
Informs the panel that it should stop all its computation.- Specified by:
shutdown
in interfaceITaskPropertyGui
-
getComponent
public javax.swing.JComponent getComponent()
The component to be shown in the gui.- Specified by:
getComponent
in interfaceITaskPropertyGui
- Returns:
- The component to be displayed.
-
-