Package com.dubture.composer.ui.parts

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


      }
    });
  }

  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()) {
View Full Code Here

TOP

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

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.