powered by ASAP

Usage of @workflowDocu on command-level
/**
 * @workflowDocu This command gets an element by its id.  (1)
 */
@JavaCommand
@CommandGroup("Element")
public class GetElement {

	/**
	 * @workflowDocu Id of the element to fetch (2)
	 */
	@Persistent
	private String id;

	[...]

}