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 abstract class ASTGraphQuerySet extends ASTGraphQuery {
09:
10: public ASTGraphQuerySet(int i) {
11: super (i);
12: }
13:
14: public ASTGraphQuerySet(SyntaxTreeBuilder p, int i) {
15: super (p, i);
16: }
17:
18: public ASTGraphQuery getLeftArg() {
19: return (ASTGraphQuery) children.get(0);
20: }
21:
22: public ASTGraphQuery getRightArg() {
23: return (ASTGraphQuery) children.get(1);
24: }
25: }
|