01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 1997-2006.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.query.parser.serql.ast;
07:
08: import java.util.List;
09:
10: public class ASTQueryContainer extends SimpleNode {
11:
12: public ASTQueryContainer(int id) {
13: super (id);
14: }
15:
16: public ASTQueryContainer(SyntaxTreeBuilder p, int id) {
17: super (p, id);
18: }
19:
20: @Override
21: public Object jjtAccept(SyntaxTreeBuilderVisitor visitor,
22: Object data) throws VisitorException {
23: return visitor.visit(this , data);
24: }
25:
26: public ASTQuery getQuery() {
27: return (ASTQuery) children.get(0);
28: }
29:
30: public boolean hasNamespaceDeclList() {
31: return children.size() >= 2;
32: }
33:
34: public List<ASTNamespaceDecl> getNamespaceDeclList() {
35: return super .jjtGetChildren(ASTNamespaceDecl.class);
36: }
37: }
|