Package edu.indiana.extreme.xbaya.graph.subworkflow

Examples of edu.indiana.extreme.xbaya.graph.subworkflow.SubWorkflowNode


  /**
   * @see edu.indiana.extreme.xbaya.component.ws.WSComponent#createNode(edu.indiana.extreme.xbaya.graph.Graph)
   */
  @Override
  public SubWorkflowNode createNode(Graph graph) {
    SubWorkflowNode node = new SubWorkflowNode(graph);
    node.setWorkflow(workflow.clone());

    // Copy some infomation from the component

    node.setName(getName());
    node.setComponent(this);
    // node.setWSDLQName(this.wsdlQName);

    // Creates a unique ID for the node. This has to be after setName().
    node.createID();

    // Creat ports
    createPorts(node);

    return node;
View Full Code Here

TOP

Related Classes of edu.indiana.extreme.xbaya.graph.subworkflow.SubWorkflowNode

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.