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: /**
09: * Abstract super type of all basic values (URIs, QNames, BNodes and Literals).
10: */
11: public abstract class ASTValue extends ASTValueExpr {
12:
13: public ASTValue(int i) {
14: super (i);
15: }
16:
17: public ASTValue(SyntaxTreeBuilder p, int i) {
18: super(p, i);
19: }
20: }
|