Examples of FinalNodeImpl


Examples of org.openbp.core.model.item.process.FinalNodeImpl

   *
   * @return The new node
   */
  public FinalNodeImpl createStandardFinalNode()
  {
    FinalNodeImpl node = new FinalNodeImpl();
    node.setName(CoreConstants.DEFAULT_FINAL_NODE_NAME);

    NodeSocket socket = createEntrySocket(CoreConstants.SOCKET_IN, true);
    socket.setGeometry(ProcessUtil.createSocketGeometry("n"));
    node.setSocket(socket);

    return node;
  }
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.