SQLLValueElement.java :  » Workflow-Engines » obe-1.0 » org » obe » sql » Java Open Source

Java Open Source » Workflow Engines » obe 1.0 
obe 1.0 » org » obe » sql » SQLLValueElement.java
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);
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.