Examples of EndForEachComponent


Examples of org.apache.airavata.xbaya.component.system.EndForEachComponent

        this.componentRegistry = new LocalComponentRegistry(XBayaPathConstants.WSDL_DIRECTORY);
        this.inputComponent = new InputComponent();
        this.outputComponent = new OutputComponent();
        this.constantComponent = new ConstantComponent();
        this.splitComponent = new ForEachComponent();
        this.mergeComponent = new EndForEachComponent();
        this.ifComponent = new IfComponent();
        this.endifComponent = new EndifComponent();
        this.receiveComponent = new ReceiveComponent();
    }
View Full Code Here

Examples of org.apache.airavata.xbaya.component.system.EndForEachComponent

    /**
     * @see org.apache.airavata.xbaya.graph.impl.NodeImpl#getComponent()
     */
    @Override
    public EndForEachComponent getComponent() {
        EndForEachComponent component = (EndForEachComponent) super.getComponent();
        if (component == null) {
            // The component is null when read from the graph XML.
            component = new EndForEachComponent();
            setComponent(component);
        }
        return component;
    }
View Full Code Here

Examples of org.apache.airavata.xbaya.component.system.EndForEachComponent

    /**
     * Adds additional input port.
     */
    public void addInputPort() {
        EndForEachComponent component = getComponent();
        ComponentDataPort input = component.getInputPort();
        DataPort port = input.createPort();
        addInputPort(port);
    }
View Full Code Here

Examples of org.apache.airavata.xbaya.component.system.EndForEachComponent

    /**
     * Adds additional output port.
     */
    public void addOutputPort() {
        EndForEachComponent component = getComponent();
        ComponentDataPort outputPort = component.getOutputPort();
        DataPort port = outputPort.createPort();
        addOutputPort(port);
    }
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.