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