Package com.dubture.composer.ui.parts

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


      }
    });
  }
 
  private void createStabilityEntry(Composite client, FormToolkit toolkit) {
    minimumStabilityEntry = new ComboFormEntry(client, toolkit, "Minimum Stability", SWT.FLAT | SWT.READ_ONLY);
    minimumStabilityEntry.getComboPart().setItems(ComposerConstants.STABILITIES);
    minimumStabilityEntry.setValue(composerPackage.getMinimumStability(), true);
   
    minimumStabilityEntry.addComboFormEntryListener(new ComboFormEntryAdapter() {
      public void selectionChanged(ComboFormEntry entry) {
View Full Code Here

TOP

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

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.