Package org.apache.airavata.workflow.model.component

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


        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

        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

        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

        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

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

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

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

    }
View Full Code Here

        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

    this.inputs.add(this.inputPort);
    this.inputPort = new SystemComponentDataPort(INPUT_PREDICATE_PORT_NAME);
    this.inputPort.setDescription(INPUT_PREDICATE_PORT_DESCRIPTION);
    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 outputPortTrue = new ComponentControlPort(
        TRUE_PORT_NAME);
    outputPortTrue.setDescription(CONTROL_OUT_TRUE_DESCRIPTION);
    this.controlOutPorts.add(outputPortTrue);

    ComponentControlPort outputPortFalse = new ComponentControlPort(
        FALSE_PORT_NAME);
    outputPortFalse.setDescription(CONTROL_OUT_FALSE_DESCRIPTION);
    this.controlOutPorts.add(outputPortFalse);
  }
View Full Code Here

        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

TOP

Related Classes of org.apache.airavata.workflow.model.component.ComponentControlPort

Copyright © 2018 www.massapicom. 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.