| java.lang.Object de.danet.an.workflow.api.FormalParameter
FormalParameter | public class FormalParameter implements Serializable(Code) | | This class provides a description of a formal parameter as used
for workflow processes and workflow applications.
|
Inner Class :final public static class Mode implements Serializable | |
Constructor Summary | |
public | FormalParameter(String newId, String newIndex, Mode newMode, Object newType) Creates a new FormalParameter .
Parameters: newId - identifier of the formal parameter in String Parameters: newIndex - index of the formal parameter in String. |
Method Summary | |
public boolean | equals(Object obj) Compare two formal parameter objects.
Parameters: obj - the object to compare with. | public int | hashCode() Evaluate hash code. | public String | id() Return the id of the formal parameter. | public String | index() Return the index of the formal parameter. | public Mode | mode() Return the mode of the formal parameter. | public String | toString() Create string representation for debugging purposes. | public Object | type() Return the type of the formal parameter. |
FormalParameter | public FormalParameter(String newId, String newIndex, Mode newMode, Object newType)(Code) | | Creates a new FormalParameter .
Parameters: newId - identifier of the formal parameter in String Parameters: newIndex - index of the formal parameter in String. In the1.iteration if the new Index is not null, a warning will be generated. Parameters: newMode - mode of this formal parameter Parameters: newType - type of this formal parameter |
equals | public boolean equals(Object obj)(Code) | | Compare two formal parameter objects.
Parameters: obj - the object to compare with. true if the objects are equal. |
hashCode | public int hashCode()(Code) | | Evaluate hash code.
the hash code. |
id | public String id()(Code) | | Return the id of the formal parameter.
a String representing the id value |
index | public String index()(Code) | | Return the index of the formal parameter.
a String representing the index value |
mode | public Mode mode()(Code) | | Return the mode of the formal parameter.
the FormalParameter.Mode of the formal parameter. |
toString | public String toString()(Code) | | Create string representation for debugging purposes.
the result. |
|
|