| java.lang.Object org.apache.commons.scxml.model.Action org.apache.commons.scxml.model.Var
Var | public class Var extends Action (Code) | | The class in this SCXML object model that corresponds to the
<var> SCXML element.
|
Constructor Summary | |
public | Var() Constructor. |
Var | public Var()(Code) | | Constructor.
|
getExpr | final public String getExpr()(Code) | | Get the expression that evaluates to the initial value
of the variable.
String Returns the expr. |
getName | final public String getName()(Code) | | Get the name of the (new) variable.
String Returns the name. |
setExpr | final public void setExpr(String expr)(Code) | | Set the expression that evaluates to the initial value
of the variable.
Parameters: expr - The expr to set. |
setName | final public void setName(String name)(Code) | | Set the name of the (new) variable.
Parameters: name - The name to set. |
|
|