biouml.model.dynamics
Class Assignment
|
+--biouml.model.dynamics.Assignment
- public class Assignment
- extends Option
- implements ExpressionOwner
The Assignment structures represent variable assignments which have effect
when the event is executed.
| Constructor Summary |
Assignment(String variable, String math) |
Assignment
public Assignment(String variable, String math)
getExpressions
public String[] getExpressions()
getMath
public String getMath()
getRole
public EModelRole getRole()
getVariable
public String getVariable()
isExpression
public boolean isExpression(String propertyName)
setMath
public void setMath(String math)
setVariable
public void setVariable(String variable)
to Class java.lang.String- Name of variable whose value should be changed.
to Class java.lang.String
- Expresison that used to calculate new value of the variable.
BOTTOM