Package unbbayes.gui.option

Examples of unbbayes.gui.option.JunctionTreeOptionPanel


    InferenceAlgorithmOptionPanel algorithmOptionPanel = null// the mapped object
   
    // we assume algorithm equality as class equality (if 2 algorithms uses the same class, we assume they are the same algorithm)
     
      // junction tree
      algorithmOptionPanel = new JunctionTreeOptionPanel();
      radio = new JRadioButtonMenuItem(algorithmOptionPanel.getInferenceAlgorithm().getName(),
        (controller.getInferenceAlgorithm()!= null) && (controller.getInferenceAlgorithm().getClass().equals(algorithmOptionPanel.getInferenceAlgorithm().getClass())));
    radio.setToolTipText(algorithmOptionPanel.getInferenceAlgorithm().getDescription());
    ret.put(radio, algorithmOptionPanel);
View Full Code Here

TOP

Related Classes of unbbayes.gui.option.JunctionTreeOptionPanel

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.