Package org.cishell.gui.prefgui.preferencepages

Examples of org.cishell.gui.prefgui.preferencepages.BlankPreferencePage


    }
   
    private void addGlobalPreferences(PreferenceManager prefManager) {
      PrefPage[] globalPrefPages = prefAdmin.getGlobalPrefPages();
     
      BlankPreferencePage globalPrefPageRoot = new BlankPreferencePage(1, "General Preferences", "Contains preferences that change the workbench's functionality.");
      PreferenceNode rootNode = new PreferenceNode("General Preferences Root", globalPrefPageRoot);
      prefManager.addToRoot(rootNode);
     
      addPrefPages(globalPrefPages, rootNode);
    }
View Full Code Here


    }
   
    private void addLocalPreferences(PreferenceManager prefManager) {
      PrefPage[] localPrefPages = prefAdmin.getLocalPrefPages();
     
      BlankPreferencePage localPrefPageRoot = new BlankPreferencePage(1,
          "Algorithm Preferences", "Contains preferences that modify how particular algorithms work.");
      PreferenceNode rootNode = new PreferenceNode("Algorithm Preferences Root", localPrefPageRoot);
      prefManager.addToRoot(rootNode);
     
      addPrefPages(localPrefPages, rootNode);
View Full Code Here

    }
    private void addParamPreferences(PreferenceManager prefManager) {
      PrefPage[] paramPrefPages = prefAdmin.getParamPrefPages();
     
      BlankPreferencePage paramPrefPageRoot = new BlankPreferencePage(1, "Algorithm Parameter Preferences",
          "Contains preferences that specify the default values for algorithm menus");
      PreferenceNode rootNode = new PreferenceNode("General Preferences Root", paramPrefPageRoot);
      prefManager.addToRoot(rootNode);
     
      addPrefPages(paramPrefPages, rootNode);
View Full Code Here

TOP

Related Classes of org.cishell.gui.prefgui.preferencepages.BlankPreferencePage

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.