public class VariableDefinition extends AbstractNode<VariableDefinition>
Constructor and Description |
---|
VariableDefinition() |
VariableDefinition(java.lang.String name,
Type type) |
VariableDefinition(java.lang.String name,
Type type,
Value defaultValue) |
Modifier and Type | Method and Description |
---|---|
TraversalControl |
accept(TraverserContext<Node> context,
NodeVisitor visitor)
Double-dispatch entry point.
|
VariableDefinition |
deepCopy() |
java.util.List<Node> |
getChildren() |
Value |
getDefaultValue() |
java.lang.String |
getName() |
Type |
getType() |
boolean |
isEqualTo(Node o)
Compares just the content and not the children.
|
void |
setDefaultValue(Value defaultValue) |
void |
setName(java.lang.String name) |
void |
setType(Type type) |
java.lang.String |
toString() |
deepCopy, deepCopy, getComments, getSourceLocation, setComments, setSourceLocation
public VariableDefinition()
public VariableDefinition(java.lang.String name, Type type)
public Value getDefaultValue()
public void setDefaultValue(Value defaultValue)
public java.lang.String getName()
public void setName(java.lang.String name)
public Type getType()
public void setType(Type type)
public java.util.List<Node> getChildren()
public boolean isEqualTo(Node o)
Node
o
- the other node to compare topublic VariableDefinition deepCopy()
public java.lang.String toString()
toString
in class java.lang.Object
public TraversalControl accept(TraverserContext<Node> context, NodeVisitor visitor)
Node
instanceOf
check when decision based on the actual
type of Node is needed, which happens redundantly during traversing AST.
Additional advantage of this pattern is to decouple tree traversal mechanism
from the code that needs to be executed when traversal "visits" a particular Node
in the tree. This leads to a better code re-usability and maintainability.context
- TraverserContext bound to this Node objectvisitor
- Visitor instance that performs actual processing on the Nodes(s)