jadex.bpmn.runtime.editor.IEditorParameterMetaInfo 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 ParameterMetaInfo
*
* @author Claas
*/
public interface IEditorParameterMetaInfo
{
/**
* Get the direction.
* @return The direction.
*/
public abstract String getDirection();
/** The implementing getDirection() method name*/
public static final String METHOD_IJADEXPARAMETERMETAINFO_GET_DIRECTION = "getDirection";
/**
* Get the clazz.
* @return The clazz.
*/
public abstract Class> getClazz();
/** The implementing getClazz() method name*/
public static final String METHOD_IJADEXPARAMETERMETAINFO_GET_CLAZZ = "getClazz";
/**
* Get the name.
* @return The name.
*/
public abstract String getName();
/** The implementing getName() method name*/
public static final String METHOD_IJADEXPARAMETERMETAINFO_GET_NAME = "getName";
/**
* Get the initialval.
* @return The initialval.
*/
public abstract String getInitialValue();
/** The implementing getInitialValue() method name*/
public static final String METHOD_IJADEXPARAMETERMETAINFO_GET_INITIAL_VALUE = "getInitialValue";
/**
* Get the description.
* @return The description.
*/
public abstract String getDescription();
/** The implementing getDescription() method name*/
public static final String METHOD_IJADEXPARAMETERMETAINFO_GET_DESCRIPTION = "getDescription";
}