Methods Summary |
---|
public void | addElement(persistence.antlr.AlternativeElement e)
// Link the element into the list
if (head == null) {
head = tail = e;
}
else {
tail.next = e;
tail = e;
}
|
public boolean | atStart()
return head == null;
|
public boolean | getAutoGen()
// Don't build an AST if there is a tree-rewrite-specifier
return doAutoGen && treeSpecifier == null;
|
public persistence.antlr.Token | getTreeSpecifier()
return treeSpecifier;
|
public void | setAutoGen(boolean doAutoGen_)
doAutoGen = doAutoGen_;
|