Examples of BiologicPreferencePage


Examples of com.dmissoh.biologic.preferences.BiologicPreferencePage

    // TODO Auto-generated method stub

  }

  public void run(IAction action) {
    IPreferencePage page = new BiologicPreferencePage();
    page.setTitle("BioLogic");
    PreferenceManager mgr = new PreferenceManager();
    IPreferenceNode node = new PreferenceNode("1", page);
    mgr.addToRoot(node);
    PreferenceDialog dialog = new PreferenceDialog(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(), mgr);
    dialog.setPreferenceStore(Activator.getDefault().getPreferenceStore());
    dialog.create();
    dialog.setMessage(page.getTitle());
    dialog.open();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.