public abstract class AbstractNode<T extends Node> extends java.lang.Object implements Node<T>
Constructor and Description |
---|
AbstractNode() |
Modifier and Type | Method and Description |
---|---|
protected <V extends Node> |
deepCopy(java.util.List<? extends Node> list) |
protected <V extends Node> |
deepCopy(V nullableObj) |
java.util.List<Comment> |
getComments()
Nodes can have comments made on them, the following is one comment per line before a node.
|
SourceLocation |
getSourceLocation() |
void |
setComments(java.util.List<Comment> comments) |
void |
setSourceLocation(SourceLocation sourceLocation) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
deepCopy, getChildren, isEqualTo
public void setSourceLocation(SourceLocation sourceLocation)
public SourceLocation getSourceLocation()
getSourceLocation
in interface Node<T extends Node>
public java.util.List<Comment> getComments()
Node
getComments
in interface Node<T extends Node>
public void setComments(java.util.List<Comment> comments)
protected <V extends Node> V deepCopy(V nullableObj)