Examples of ComponentControlPort


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

    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

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.inputs.add(this.inputPort);

        this.controlInPort = new ComponentControlPort();

        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

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.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 org.apache.airavata.workflow.model.component.ComponentControlPort

     */
    public BlockComponent() {
        setName(NAME);
        setDescription(DESCRIPTION);

        this.controlInPort = new ComponentControlPort();

        ComponentControlPort outputPortTrue = new ComponentControlPort();
        outputPortTrue.setDescription(CONTROL_OUT_TRUE_DESCRIPTION);
        this.controlOutPorts.add(outputPortTrue);

        ComponentControlPort outputPortFalse = new ComponentControlPort();
        outputPortFalse.setDescription(CONTROL_OUT_FALSE_DESCRIPTION);
        this.controlOutPorts.add(outputPortFalse);
    }
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.xbaya.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.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.xbaya.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
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.