|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Expression | |
---|---|
com.jscape.inet.mft.workflow | Contains domain event processing service classes. |
com.jscape.util.workflow | Contains workflow implementation classes. |
com.jscape.util.workflow.statements | Contains workflow statement classes. |
Uses of Expression in com.jscape.inet.mft.workflow |
---|
Methods in com.jscape.inet.mft.workflow that return Expression | |
---|---|
Expression |
Trigger.getExpression()
Returns trigger expression. |
Methods in com.jscape.inet.mft.workflow with parameters of type Expression | |
---|---|
void |
Trigger.setExpression(Expression value)
Sets trigger expression. |
Uses of Expression in com.jscape.util.workflow |
---|
Classes in com.jscape.util.workflow that implement Expression | |
---|---|
class |
AssignmentExpression
Assignment expression. |
class |
BinaryExpression
Represents binary expression. |
class |
ConstantExpression
Constant expression. |
class |
NullExpression
"Special case": null expression. |
class |
UnaryExpression
Unary expression. |
class |
VariableExpression
Variable expression. |
Methods in com.jscape.util.workflow that return Expression | |
---|---|
Expression |
UnaryExpression.getExpression()
Returns a target expression. |
Expression |
AssignmentExpression.getExpression()
Returns an expression to assign. |
Expression |
BinaryExpression.getLeftExpression()
Returns left expression. |
Expression |
BinaryExpression.getRightExpression()
Returns right expression. |
Methods in com.jscape.util.workflow with parameters of type Expression | |
---|---|
void |
UnaryExpression.setExpression(Expression value)
Sets a new target expression. |
void |
AssignmentExpression.setExpression(Expression value)
Sets an expression to assign. |
void |
BinaryExpression.setLeftExpression(Expression value)
Sets left expression. |
void |
BinaryExpression.setRightExpression(Expression value)
Sets right expression. |
Constructors in com.jscape.util.workflow with parameters of type Expression | |
---|---|
AssignmentExpression(Variable variable,
Expression expression)
Creates a new expression instance. |
|
BinaryExpression(Expression leftExpression,
BinaryOperator operator,
Expression rightExpression)
Creates a new expression instance. |
|
UnaryExpression(Expression expression,
UnaryOperator operator)
Creates a new expression instance. |
Uses of Expression in com.jscape.util.workflow.statements |
---|
Methods in com.jscape.util.workflow.statements that return Expression | |
---|---|
Expression |
WhileStatement.getExpression()
Returns a statement expression. |
Expression |
ConditionalStatement.getExpression()
Returns a statement expression. |
Methods in com.jscape.util.workflow.statements with parameters of type Expression | |
---|---|
void |
WhileStatement.setExpression(Expression value)
Sets a new statement expression. |
void |
ConditionalStatement.setExpression(Expression value)
Sets a new statement expression. |
Constructors in com.jscape.util.workflow.statements with parameters of type Expression | |
---|---|
ConditionalStatement(Expression expression,
Statement statement,
Statement elseStatement)
Creates a new statement instance. |
|
WhileStatement(Expression expression,
Statement statement)
Creates a new statement instance. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |