Package org.teiid.client.plan

Examples of org.teiid.client.plan.PlanNode.addProperty()


        return "LOOP " + resultSetName; //$NON-NLS-1$
    }

    public PlanNode getDescriptionProperties() {
        PlanNode props = new PlanNode("LOOP"); //$NON-NLS-1$
        props.addProperty(PROP_RESULT_SET, this.resultSetName);          
        props.addProperty(PROP_PROGRAM, this.blockProgram.getDescriptionProperties());          
        return props;
    }

    public String getResultSetName() {
View Full Code Here


    }

    public PlanNode getDescriptionProperties() {
        PlanNode props = new PlanNode("LOOP"); //$NON-NLS-1$
        props.addProperty(PROP_RESULT_SET, this.resultSetName);          
        props.addProperty(PROP_PROGRAM, this.blockProgram.getDescriptionProperties());          
        return props;
    }

    public String getResultSetName() {
        return this.resultSetName;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.