Examples of FormEntry


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

    binDirEntry.setEnabled(enabled);
    notifyOnInstallEntry.setEnabled(enabled);
  }

  private void createProcessTimeoutEntry(Composite client, FormToolkit toolkit) {
    processTimeoutEntry = new FormEntry(client, toolkit, "process-timeout", null, false);
    Integer processTimeout = composerPackage.getConfig().getProcessTimeout();
    if (processTimeout != null) {
      processTimeoutEntry.setValue("" + processTimeout, true);
    }
   
View Full Code Here

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

      }
    });
  }
 
  private void createVendorDirEntry(Composite client, FormToolkit toolkit) {
    vendorDirEntry = new FormEntry(client, toolkit, "vendor-dir", null, false);
    String vendorDir = composerPackage.getConfig().getVendorDir();
    if (vendorDir != null) {
      vendorDirEntry.setValue(vendorDir, true);
    }
   
View Full Code Here

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

      }
    });
  }
 
  private void createBinDirEntry(Composite client, FormToolkit toolkit) {
    binDirEntry = new FormEntry(client, toolkit, "bin-dir", null, false);
    String binDir = composerPackage.getConfig().getBinDir();
    if (binDir != null) {
      binDirEntry.setValue(binDir, true);
    }
   
View Full Code Here

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

    ircEntry.setEnabled(enabled);
    sourceEntry.setEnabled(enabled);
  }

  private void createEmailEntry(Composite client, FormToolkit toolkit) {
    emailEntry = new FormEntry(client, toolkit, "Email", null, false);
    emailEntry.setValue(support.getEmail(), true);
   
    emailEntry.addFormEntryListener(new FormEntryAdapter() {
      public void textValueChanged(FormEntry entry) {
        support.setEmail(entry.getValue());
View Full Code Here

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

    licenseEntry.setEnabled(enabled);
    minimumStabilityEntry.setEditable(enabled);
  }

  private void createNameEntry(Composite client, FormToolkit toolkit) {
    nameEntry = new FormEntry(client, toolkit, "Name", null, false);
    nameEntry.setValue(composerPackage.getName(), true);
   
    nameEntry.addFormEntryListener(new FormEntryAdapter() {
      public void textValueChanged(FormEntry entry) {
        composerPackage.set("name", entry.getValue());
View Full Code Here

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

      }
    });
  }
 
  private void createDescriptionEntry(Composite client, FormToolkit toolkit) {
    descriptionEntry = new FormEntry(client, toolkit, "Description", null, false);
    descriptionEntry.setValue(composerPackage.getDescription(), true);
   
    descriptionEntry.addFormEntryListener(new FormEntryAdapter() {
      public void textValueChanged(FormEntry entry) {
        composerPackage.set("description", entry.getValue());
View Full Code Here

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

      }
    });
  }
 
  private void createTypeEntry(Composite client, FormToolkit toolkit) {
    typeEntry = new FormEntry(client, toolkit, "Type", null, false);
    typeEntry.setValue(composerPackage.getType(), true);
   
    ControlDecoration decoration = new ControlDecoration(typeEntry.getText(), SWT.TOP | SWT.LEFT);
   
        FieldDecoration indicator = FieldDecorationRegistry.getDefault().
View Full Code Here

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

      }
    });
  }
 
  private void createKeywordsEntry(Composite client, FormToolkit toolkit) {
    keywordsEntry = new FormEntry(client, toolkit, "Keywords", null, false);
   
    final Keywords2StringConverter converter = new Keywords2StringConverter();
    keywordsEntry.setValue(converter.convert(composerPackage.getKeywords()), true);
   
    keywordsEntry.addFormEntryListener(new FormEntryAdapter() {
View Full Code Here

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

      }
    });
  }
 
  private void createLicenseEntry(Composite client, FormToolkit toolkit) {
    licenseEntry = new FormEntry(client, toolkit, "License", null, false);
   
    ControlDecoration decoration = new ControlDecoration(licenseEntry.getText(), SWT.TOP | SWT.LEFT);
   
        FieldDecoration indicator = FieldDecorationRegistry.getDefault().
                getFieldDecoration(FieldDecorationRegistry.DEC_CONTENT_PROPOSAL);
View Full Code Here

Examples of com.googlecode.mgwt.ui.client.widget.form.FormEntry

    Form widgetList = new Form();
    widgetList.setHeader(new Label("Contact Data"));

    // lets put in some widgets
    widgetList.add(new FormEntry("Firstname", new MTextBox()));
    widgetList.add(new FormEntry("Lastname", new MTextBox()));
    widgetList.add(new FormEntry("Job Title", new MTextBox()));

    container.add(widgetList);

    scrollPanel.setScrollingEnabledX(false);
    scrollPanel.setWidget(container);
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.