Package org.eclipse.wb.core.controls.jface.preference

Examples of org.eclipse.wb.core.controls.jface.preference.ComboFieldEditor


  private void createComboFieldEditor(String key,
      String labelText,
      String[][] entryNamesAndValues,
      Composite parent) {
    final Composite composite = new Composite(parent, SWT.NONE);
    addField(new ComboFieldEditor(key, labelText, entryNamesAndValues, composite));
  }
View Full Code Here


      label.setText("Close and re-open any editors to see the effects of these preferences.");
      GridDataFactory.create(label).spanH(2).alignHF();
    }
    {
      // editor layout mode
      ComboFieldEditor editorLayout =
          new ComboFieldEditor(P_EDITOR_LAYOUT, "Editor layout:", new String[][]{
              new String[]{
                  "On separate notebook tabs (Source first)",
                  "" + V_EDITOR_LAYOUT_PAGES_SOURCE},
              new String[]{
                  "On separate notebook tabs (Design first)",
View Full Code Here

TOP

Related Classes of org.eclipse.wb.core.controls.jface.preference.ComboFieldEditor

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.