diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-03-27 23:20:35 -0600 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-03-27 23:20:35 -0600 |
commit | 835e614e1e2531db3dc7dbe027de122a9fa0b78f (patch) | |
tree | c850ac64341cd8ceb56de23f71219c89b7bc3317 /syntaxtree/NodeListInterface.java | |
parent | b01fe1e8e5541d6c11f905d7fbb949d747f29230 (diff) |
Reorder generated files
Diffstat (limited to 'syntaxtree/NodeListInterface.java')
-rw-r--r-- | syntaxtree/NodeListInterface.java | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/syntaxtree/NodeListInterface.java b/syntaxtree/NodeListInterface.java new file mode 100644 index 0000000..7579bbf --- /dev/null +++ b/syntaxtree/NodeListInterface.java @@ -0,0 +1,22 @@ +// +// Generated by JTB 1.3.2 +// + +package syntaxtree; + +/** + * The interface which NodeList, NodeListOptional, and NodeSequence + * implement. + */ +public interface NodeListInterface extends Node { + public void addNode(Node n); + public Node elementAt(int i); + public java.util.Enumeration<Node> elements(); + public int size(); + + public void accept(visitor.Visitor v); + public <R,A> R accept(visitor.GJVisitor<R,A> v, A argu); + public <R> R accept(visitor.GJNoArguVisitor<R> v); + public <A> void accept(visitor.GJVoidVisitor<A> v, A argu); +} + |