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 ASTBNode extends ASTValue {
09:
10: private String id;
11:
12: public ASTBNode(int id) {
13: super (id);
14: }
15:
16: public ASTBNode(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 getID() {
27: return id;
28: }
29:
30: public void setID(String id) {
31: this .id = id;
32: }
33:
34: @Override
35: public String toString() {
36: return super .toString() + " (_:" + id + ")";
37: }
38: }
|