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: public class ASTNamespaceDecl extends SimpleNode {
09:
10: private String prefix;
11:
12: public ASTNamespaceDecl(int id) {
13: super (id);
14: }
15:
16: public ASTNamespaceDecl(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 String getPrefix() {
27: return prefix;
28: }
29:
30: public void setPrefix(String prefix) {
31: this .prefix = prefix;
32: }
33:
34: public ASTURI getURI() {
35: return (ASTURI) jjtGetChild(0);
36: }
37:
38: @Override
39: public String toString() {
40: return super .toString() + " (\"" + prefix + "\")";
41: }
42: }
|