| java.lang.Object org.apache.commons.scxml.model.Action org.apache.commons.scxml.model.Assign
Assign | public class Assign extends Action implements PathResolverHolder(Code) | | The class in this SCXML object model that corresponds to the
<assign> SCXML element.
|
Constructor Summary | |
public | Assign() Constructor. |
Assign | public Assign()(Code) | | Constructor.
|
getExpr | public String getExpr()(Code) | | Get the expr that will evaluate to the new value.
Returns the expr. |
getLocation | public String getLocation()(Code) | | Get the location for a previously defined XML data tree.
Returns the location. |
getName | public String getName()(Code) | | Get the variable to be assigned a new value.
Returns the name. |
getSrc | public String getSrc()(Code) | | Get the source where the new XML instance for this location exists.
Returns the source. |
setExpr | public void setExpr(String expr)(Code) | | Set the expr that will evaluate to the new value.
Parameters: expr - The expr to set. |
setLocation | public void setLocation(String location)(Code) | | Set the location for a previously defined XML data tree.
Parameters: location - The location. |
setName | public void setName(String name)(Code) | | Get the variable to be assigned a new value.
Parameters: name - The name to set. |
setPathResolver | public void setPathResolver(PathResolver pathResolver)(Code) | | Set the
PathResolver .
Parameters: pathResolver - The pathResolver to set. |
setSrc | public void setSrc(String src)(Code) | | Set the source where the new XML instance for this location exists.
Parameters: src - The source. |
|
|