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

Examples of org.apache.airavata.workflow.model.component.system.OutputComponent


          connect(node.getOutputPorts().get(0), port);
        }
        break;
          case DATA_OUT:
        nodePos = new Point(pos.x + NodeGUI.MINIMUM_WIDTH + xgap, pos.y + ygap);
        node = addNode(new OutputComponent(), nodePos);
        connect(port, node.getInputPorts().get(0));
        break;
            default:
          }
        }
View Full Code Here


        this.temporaryDirectory.mkdir();

        this.componentRegistry = new WebComponentRegistry(XBayaConstants.DEFAULT_WEB_REGISTRY.toURL());
        this.componentRegistry.getComponentReferenceList(); // To read components
        this.inputComponent = new InputComponent();
        this.outputComponent = new OutputComponent();
    }
View Full Code Here

TOP

Related Classes of org.apache.airavata.workflow.model.component.system.OutputComponent

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.