jadex.bpmn.model.task.annotation.TaskProperty 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.
The newest version!
package jadex.bpmn.model.task.annotation;
/**
* A declared property of a task.
*/
public @interface TaskProperty
{
/** The clazz (i.e. type) of the propery. */
public Class> clazz() default Object.class;
/** The property name. */
public String name();
/** The initial value (as Java expression). */
public String initialvalue() default "null";
/** The parameter description. */
public String description() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy