
jadex.bpmn.model.task.ITaskPropertyGui Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-model-bpmn Show documentation
Show all versions of jadex-model-bpmn Show documentation
Business Process Model and Notation (BPMN) implementation.
package jadex.bpmn.model.task;
import javax.swing.JComponent;
import jadex.bpmn.model.IModelContainer;
import jadex.bpmn.model.MActivity;
/**
*
*/
public interface ITaskPropertyGui
{
/**
* Once called to init the component.
*/
// public void init(IModelInfo model, MActivity task, ClassLoader cl);
public void init(IModelContainer container, MActivity task, ClassLoader cl);
/**
* Informs the panel that it should stop all its computation.
*/
public void shutdown();
/**
* The component to be shown in the gui.
* @return The component to be displayed.
*/
public JComponent getComponent();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy