Package com.dubture.composer.ui.parts

Examples of com.dubture.composer.ui.parts.IBooleanFormEntryListener


  private void createNotifyOnInstallEntry(Composite client, FormToolkit toolkit) {
    notifyOnInstallEntry = new BooleanFormEntry(client, toolkit, "notify-on-install");
    notifyOnInstallEntry.setValue(composerPackage.getConfig().getNotifyOnInstall());
   
    notifyOnInstallEntry.addBooleanFormEntryListener(new IBooleanFormEntryListener() {
      public void selectionChanged(BooleanFormEntry entry) {
        if (entry.getValue()) {
          composerPackage.getConfig().remove("notify-on-install");
        } else {
          composerPackage.getConfig().setNotifyOnInstall(entry.getValue());
View Full Code Here

TOP

Related Classes of com.dubture.composer.ui.parts.IBooleanFormEntryListener

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.