Package unbbayes.gui.option

Examples of unbbayes.gui.option.GaussianMixtureOptionPanel


//        (controller.getInferenceAlgorithm()!= null) && (controller.getInferenceAlgorithm().getClass().equals(algorithmOptionPanel.getInferenceAlgorithm().getClass())));
//    radio.setToolTipText(algorithmOptionPanel.getInferenceAlgorithm().getDescription());
//    ret.put(radio, algorithmOptionPanel);
     
        // gaussian mixture algorithm
      algorithmOptionPanel = new GaussianMixtureOptionPanel();
      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.GaussianMixtureOptionPanel

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.