Package jtb.syntaxtree
Interface NodeListInterface
-
- All Superinterfaces:
Node,Serializable
- All Known Implementing Classes:
NodeList,NodeListOptional,NodeSequence
public interface NodeListInterface extends Node
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <R> Raccept(GJNoArguVisitor<R> v)<R,A>
Raccept(GJVisitor<R,A> v, A argu)<A> voidaccept(GJVoidVisitor<A> v, A argu)voidaccept(Visitor v)voidaddNode(Node n)NodeelementAt(int i)Enumeration<Node>elements()intsize()
-
-
-
Method Detail
-
elements
Enumeration<Node> elements()
-
size
int size()
-
accept
<R> R accept(GJNoArguVisitor<R> v)
-
accept
<A> void accept(GJVoidVisitor<A> v, A argu)
-
-