Package edu.indiana.extreme.xbaya.graph.dynamic

Examples of edu.indiana.extreme.xbaya.graph.dynamic.CombineMultipleStreamNode


  public CombineMultipleStreamComponent(){
    super(NAME);
  }

  public CombineMultipleStreamNode createNode(Graph graph) {
    CombineMultipleStreamNode node = new CombineMultipleStreamNode(graph);

    // Copy some infomation from the component

    node.setName(getName());
    node.setComponent(new CepComponent());

    // 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.dynamic.CombineMultipleStreamNode

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.