All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jadex.bpmn.runtime.editor.IEditorTaskMetaInfo Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 4.0.267
Show newest version
package jadex.bpmn.runtime.editor;

/**
 * 
 * 

This is only a COPY from the BPMN editor

* * Marker interface for TaskMetaInfo * * @author Claas */ public interface IEditorTaskMetaInfo { /** * Get the description. * @return The description. */ public abstract String getDescription(); /** getDescription() method name */ public static final String METHOD_ITASKMETAINFO_GET_DESCRIPTION = "getDescription"; /** * Get the parameters. * @return The parameters. */ public abstract IEditorParameterMetaInfo[] getParameterMetaInfos(); /** getParameterMetaInfos() method name */ public static final String METHOD_ITASKMETAINFO_GET_PARAMETER_METAINFOS = "getParameterMetaInfos"; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy