01: package org.obe.sql;
02:
03: import java.io.IOException;
04: import java.io.Writer;
05:
06: /**
07: * @author Adrian Price
08: */
09: public class SQLLvalue extends SimpleNode {
10: public SQLLvalue(int id) {
11: super (id);
12: }
13:
14: public void write(Writer out) throws IOException {
15: children[0].write(out);
16: }
17:
18: public Object execute(Object context) {
19: return children[0].execute(context);
20: }
21: }
|