jadex.bpmn.runtime.editor.IEditorTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-kernel-bpmn Show documentation
Show all versions of jadex-kernel-bpmn Show documentation
The Jadex BPMN kernel provides a workflow kernel for the standardized business process modeling notation. The kernel relies on annotated BPMN diagrams, which include detailed execution information.
/**
*
*/
package jadex.bpmn.runtime.editor;
/**
* This is only a COPY from the BPMN editor
* Marker Interface for Jadex BPMN tasks
*/
public interface IEditorTask
{
/**
* Access the TaskMetaInfo
* @return the TaskMetaInfo
*/
public IEditorTaskMetaInfo getMetaInfo();
/** getDescription() method name */
public static final String METHOD_IJADEXTASK_GET_TASK_METAINFO = "getMetaInfo";
}