Examples of RadioGroupFieldEditor


Examples of org.eclipse.jface.preference.RadioGroupFieldEditor

      Composite composite = createDefaultComposite(parent);
     
      //get the supported types from the dictionary manager
      String [][] options = DictionaryManager.getConfiguredDictionaries();
     
      this.cfmlSyntaxField = new RadioGroupFieldEditor(
          CFMLPreferenceConstants.P_CFML_DICTIONARY,
          CFML_DICTIONARY_TITLE,
          1,
          options,
          composite,
View Full Code Here

Examples of org.eclipse.jface.preference.RadioGroupFieldEditor

      String [][] options = new String[][] {
              {"Fusebox 3", FuseboxPropertyStore.P_FBX_VERSION_DEFAULT},
              {"Fusebox 4", "org.cfeclipse.frameworks.fusebox4.parser.FBX4parser"}
      };
     
      this.fbxVersionField = new RadioGroupFieldEditor(
          FuseboxPropertyStore.P_FBX_VERSION,
              VERSION_TITLE,
              1,
              options,
              composite,
View Full Code Here

Examples of org.eclipse.jface.preference.RadioGroupFieldEditor

        String[][] labels = {
                { "read/write embedded",
                    GraphDbServiceMode.READ_WRITE_EMBEDDED.name() },
                    { "read-only embedded",
                        GraphDbServiceMode.READ_ONLY_EMBEDDED.name() } };
        connectionMode = new RadioGroupFieldEditor(
                Preferences.CONNECTION_MODE, NEO4J_CONNECTION_MODE, 1, labels,
                getFieldEditorParent() );
        addField( connectionMode );

View Full Code Here

Examples of org.eclipse.jface.preference.RadioGroupFieldEditor

    Composite radioComposite2 = new Composite(radioComposite, SWT.NONE);
    layout.marginWidth = 3;
    layout.marginHeight = 3;
    radioComposite2.setLayout(layout);
    radioComposite2.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
    radioEditor = new RadioGroupFieldEditor(BeansUIPlugin.DEFAULT_DOUBLE_CLICK_ACTION_PREFERENCE_ID,
        "Default Double Click Action", 1, new String[][] { { "Open Configuration File", "true" },
            { "Open Java Element", "false" } }, radioComposite2, true);
    radioEditor.setPage(this);
    radioEditor.setPreferenceStore(getPreferenceStore());
    radioEditor.load();
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.