Examples of ComponentControlPort


Examples of edu.indiana.extreme.xbaya.component.ComponentControlPort

        this.outputPort = new SystemComponentDataPort(OUTPUT_PORT_NAME);
        this.outputPort.setDescription(OUTPUT_PORT_DESCRIPTION);
        this.outputs.add(this.outputPort);

        this.controlInPort = new ComponentControlPort();
        this.controlOutPorts.add(new ComponentControlPort());
        this.eprPort = new ComponentEPRPort();
    }
View Full Code Here

Examples of edu.indiana.extreme.xbaya.component.ComponentControlPort

    this.inputs = new ArrayList<InstanceComponentDataPort>(0);
   
    this.outputs = new ArrayList<InstanceComponentDataPort>(1);
    this.outputs.add(new InstanceComponentDataPort(OUTPUT_PORT_NAME));

        ComponentControlPort outputPort = new ComponentControlPort(CONTROL_OUT_NAME);
        outputPort.setDescription(CONTROL_OUT_DESCRIPTION);
        this.controlOutPorts.add(outputPort);
  }   
View Full Code Here

Examples of org.apache.airavata.workflow.model.component.ComponentControlPort

        this.outputPort = new SystemComponentDataPort(OUTPUT_PORT_NAME);
        this.outputPort.setDescription(OUTPUT_PORT_DESCRIPTION);
        this.outputs.add(this.outputPort);

        this.controlInPort = new ComponentControlPort();
        this.controlOutPorts.add(new ComponentControlPort());
    }
View Full Code Here

Examples of org.apache.airavata.workflow.model.component.ComponentControlPort

        this.inputPort = new SystemComponentDataPort(INPUT_PORT_NAME);
        this.inputPort.setDescription(INPUT_PORT_DESCRIPTION);
        this.inputPort.setArrayDimension(1);
        this.inputs.add(this.inputPort);

        this.controlInPort = new ComponentControlPort();

        this.outputPort = new SystemComponentDataPort(OUTPUT_PORT_NAME);
        this.outputPort.setDescription(OUTPUT_PORT_DESCRIPTION);
        this.outputs.add(this.outputPort);

        ComponentControlPort controlOutPort = new ComponentControlPort();
        this.controlOutPorts.add(controlOutPort);
    }
View Full Code Here

Examples of org.apache.airavata.workflow.model.component.ComponentControlPort

        this.outputPort = new SystemComponentDataPort(OUTPUT_PORT_NAME);
        this.outputPort.setDescription(OUTPUT_PORT_DESCRIPTION);
        this.outputPort.setArrayDimension(1);
        this.outputs.add(this.outputPort);

        this.controlInPort = new ComponentControlPort();
        this.controlOutPorts.add(new ComponentControlPort());
    }
View Full Code Here

Examples of org.apache.airavata.workflow.model.component.ComponentControlPort

        this.inputs = new ArrayList<InstanceComponentDataPort>(0);

        this.outputs = new ArrayList<InstanceComponentDataPort>(1);
        this.outputs.add(new InstanceComponentDataPort(OUTPUT_PORT_NAME));

        ComponentControlPort outputPort = new ComponentControlPort(CONTROL_OUT_NAME);
        outputPort.setDescription(CONTROL_OUT_DESCRIPTION);
        this.controlOutPorts.add(outputPort);
    }
View Full Code Here

Examples of org.apache.airavata.workflow.model.component.ComponentControlPort

        this.inputs = new ArrayList<InstanceComponentDataPort>(1);
        this.inputs.add(new InstanceComponentDataPort(INPUT_PORT_NAME));

        this.outputs = new ArrayList<InstanceComponentDataPort>(0);

        this.controlInPort = new ComponentControlPort(CONTROL_IN_NAME);
        this.controlInPort.setDescription(CONTROL_IN_DESCRIPTION);
    }
View Full Code Here

Examples of org.apache.airavata.workflow.model.component.ComponentControlPort

            parse();
        } catch (UtilsException e) {
            e.printStackTrace();
        }

        this.controlInPort = new ComponentControlPort();
        this.controlOutPorts.add(new ComponentControlPort());
    }
View Full Code Here

Examples of org.apache.airavata.workflow.model.component.ComponentControlPort

        super();
        setName(NAME);
        setDescription(DESCRIPTION);
        SystemComponentDataPort port = new SystemComponentDataPort(PORT_NAME);
        port.setDescription(PORT_DESCRIPTION);
        this.controlInPort = new ComponentControlPort("exit");

    }
View Full Code Here

Examples of org.apache.airavata.workflow.model.component.ComponentControlPort

        setName(NAME);
        setDescription(DESCRIPTION);
        SystemComponentDataPort port = new SystemComponentDataPort(PORT_NAME);
        port.setDescription(PORT_DESCRIPTION);
        this.outputs.add(port);
        this.controlInPort = new ComponentControlPort();
        this.controlOutPorts.add(new ComponentControlPort());
    }
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.