Class LocalVariableExpression
- java.lang.Object
-
- com.aquima.interactions.expressions.optimizer.nodes.LocalVariableExpression
-
- All Implemented Interfaces:
Serializable
public class LocalVariableExpression extends Object implements Serializable
This class holds the information for a single local variable.- Since:
- 7.0
- Author:
- O. Kerpershoek
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LocalVariableExpression​(Identifier name, IExpressionNode expression)
Constructs the local variable with the required parameters.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected IExpressionNode
getExpression()
protected Identifier
getIdentifier()
-
-
-
Constructor Detail
-
LocalVariableExpression
public LocalVariableExpression​(Identifier name, IExpressionNode expression)
Constructs the local variable with the required parameters.- Parameters:
name
- The name of the local variable.expression
- The expression that should be used to acquire the value of the variable.
-
-
Method Detail
-
getIdentifier
protected Identifier getIdentifier()
-
getExpression
protected IExpressionNode getExpression()
-
-