Package weka.gui.ensembleLibraryEditor

Examples of weka.gui.ensembleLibraryEditor.ListModelsPanel


     */
    public CustomEditor() {
     
      m_ModelOptionsPane = new JTabbedPane();
     
      m_ListModelsPanel = new ListModelsPanel(m_Library);
      m_ModelOptionsPane.addTab("Library List", m_ListModelsPanel);
     
      //Each of the three other panels needs a reference to the main one so that
      //they can add models to it.
      m_ModelOptionsPane.addTab("Add Models", new AddModelsPanel(
View Full Code Here


     */
    public CustomEditor() {
     
      m_ModelOptionsPane = new JTabbedPane();
     
      m_ListModelsPanel = new ListModelsPanel(m_Library);
     
      m_ModelOptionsPane.addTab("Current Library", m_ListModelsPanel);
     
      m_ModelOptionsPane.addTab("Add Models", new AddModelsPanel(
    m_ListModelsPanel));
View Full Code Here

TOP

Related Classes of weka.gui.ensembleLibraryEditor.ListModelsPanel

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.