Class NamedVariableNode
java.lang.Object
com.aquima.interactions.expressions.parser.ParseNodeBase
com.aquima.interactions.expressions.r7.parser.nodes.VariableNode
com.aquima.interactions.expressions.r7.parser.nodes.NamedVariableNode
- All Implemented Interfaces:
IParseNode
This node represents a variable reference, which will usually be an attribute name.
- Since:
- 6.4
- Author:
- F. van der Meer
-
Constructor Summary
ConstructorsConstructorDescriptionNamedVariableNode
(String instanceName, IdentifierNode entityName) Constructs the node with the name of the named variable. -
Method Summary
Modifier and TypeMethodDescriptionThis method returns the name of the entity.Returns the full name with dotted notation from the variable node and it's parents.This method returns the name of the instance.Methods inherited from class com.aquima.interactions.expressions.r7.parser.nodes.VariableNode
getVariableName
Methods inherited from class com.aquima.interactions.expressions.parser.ParseNodeBase
getEndPosition, getPosition, setPosition
-
Constructor Details
-
Method Details
-
getInstanceName
This method returns the name of the instance.- Returns:
- the name of the instance.
-
getEntityName
This method returns the name of the entity.- Returns:
- the name of the entity.
-
getFullName
Description copied from class:VariableNode
Returns the full name with dotted notation from the variable node and it's parents.- Overrides:
getFullName
in classVariableNode
- Returns:
- The full name with dotted notation from the variable node and it's parents.
-