01: package org.enhydra.jawe.components.graph;
02:
03: import org.enhydra.shark.xpdl.XMLComplexElement;
04:
05: public interface WorkflowElement {
06:
07: /**
08: * Gets a property object (XML schema Element).
09: */
10: public XMLComplexElement getPropertyObject();
11:
12: /**
13: * Sets an userObject property which name is given in parameter what to
14: * a value given in a parameter value.
15: */
16:
17: /**
18: * Gets a tooltip text for element.
19: */
20: public String getTooltip();
21:
22: public String getType();
23: }
|