Package unbbayes.prs.hybridbn

Examples of unbbayes.prs.hybridbn.ContinuousNode


   * Inserts the desired node inside the network creating default state, symbol and description
   * @param x The x position.
   * @param y The y position.
   */
  public Node insertContinuousNode(double x, double y) {
    ContinuousNode node = new ContinuousNode();
    node.setPosition(x, y);
    node.setName(resource.getString("probabilisticNodeName")
        + singleEntityNetwork.getNodeCount());
    node.setDescription(node.getName());
   
    singleEntityNetwork.addNode(node);
   
    return node;
  }
View Full Code Here

TOP

Related Classes of unbbayes.prs.hybridbn.ContinuousNode

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.