package org.obe.sql;
import java.io.IOException;
import java.io.Writer;
/**
* @author Adrian Price
*/
public class SQLLValueElement extends SimpleNode {
public SQLLValueElement(int id) {
super(id);
}
public void write(Writer out) throws IOException {
children[0].write(out);
}
public Object execute(Object context) {
return children[0].execute(context);
}
}
|