Examples of StringFieldEditor


Examples of org.eclipse.jface.preference.StringFieldEditor

          case ML_FLOAT_PARAM:
          case ML_INT_PARAM:
          case ML_DOUBLE_PARAM:
          case ML_STRING_PARAM: {
            l = new StringFieldEditor(id, p.name, getFieldEditorParent());
            fields.add(l);
            addField(l);
            store.setDefault(id, values.get(p.id).toString());
            l.setPreferenceStore(store);
            break;
View Full Code Here

Examples of org.eclipse.jface.preference.StringFieldEditor

          }

          case ML_FLOAT_PARAM:
          case ML_INT_PARAM:
          case ML_STRING_PARAM: {
            l = new StringFieldEditor(id, p.name, getFieldEditorParent());
            fields.add(l);
            addField(l);
            store.setDefault(id, values.get(p.id).toString());
            l.setPreferenceStore(store);
            break;
View Full Code Here

Examples of org.eclipse.jface.preference.StringFieldEditor

          }

          case ML_FLOAT_PARAM:
          case ML_INT_PARAM:
          case ML_STRING_PARAM: {
            l = new StringFieldEditor(id, p.name, top);
            fields.add(l);
            store.setDefault(id, values.get(p.id).toString());
            l.setPreferenceStore(store);
            l.load();
            break;
View Full Code Here

Examples of org.eclipse.jface.preference.StringFieldEditor

          }

          case ML_FLOAT_PARAM:
          case ML_INT_PARAM:
          case ML_STRING_PARAM: {
            l = new StringFieldEditor(id, p.name, top);
            fields.add(l);
            store.setDefault(id, values.get(p.id).toString());
            l.setPreferenceStore(store);
            l.load();
            break;
View Full Code Here

Examples of org.eclipse.jface.preference.StringFieldEditor

    addField(proxyTypeFE);
   
    horizontalLine = new Label(getFieldEditorParent(), SWT.NONE);
    horizontalLine.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, false, 3, 1));
   
    proxyUrlFE = new StringFieldEditor(PreferenceConstants.PROXY_URL,
        Messages.getString("InternetPage.ProxyUrl"),
        getFieldEditorParent());
   
    addField(proxyUrlFE);
   
    proxyPortFE = new IntegerFieldEditor(PreferenceConstants.PROXY_PORT,
        Messages.getString("InternetPage.ProxyPort"),
        getFieldEditorParent());
   
    addField(proxyPortFE);
   
    proxyUsernameFE = new StringFieldEditor(PreferenceConstants.PROXY_USERNAME,
        Messages.getString("InternetPage.ProxyUsername"),
        getFieldEditorParent());
   
    addField(proxyUsernameFE);
   
    proxyPasswordFE = new StringFieldEditor(PreferenceConstants.PROXY_PASSWORD,
        Messages.getString("InternetPage.ProxyPassword"),
        getFieldEditorParent());
    proxyPasswordFE.getTextControl(getFieldEditorParent()).setEchoChar('*');
   
    addField(proxyPasswordFE);
 
View Full Code Here

Examples of org.eclipse.jface.preference.StringFieldEditor

   
    mplayerPath = new FileFieldEditor(PreferenceConstants.P_MPLAYER_PATH,
        Messages.getString("MPlayerEnginePage.MPlayerPath"), getFieldEditorParent()); //$NON-NLS-1$   
    addField(mplayerPath);  
   
    additionalOptionsEditor = new StringFieldEditor(PreferenceConstants.MPLAYER_ADDITIONAL_OPTIONS,
        Messages.getString("MPlayerEnginePage.MPlayerAdditionalOptions"), //$NON-NLS-1$
        getFieldEditorParent());
    additionalOptionsEditor.getTextControl(getFieldEditorParent()).setToolTipText(Messages.getString("MPlayerEnginePage.AdditionalOptionsTooltip")); //$NON-NLS-1$
    addField(additionalOptionsEditor);
   
View Full Code Here

Examples of org.eclipse.jface.preference.StringFieldEditor

    addField(new BooleanFieldEditor(P_SHOW_FULLY_QUALIFIED_NAMES, "&Show fully qualified names",
            getFieldEditorParent()));

    addField(new IntegerFieldEditor(P_XML_TAB_SPACES, "&XML indentation", getFieldEditorParent()));

    addField(new StringFieldEditor(P_VNS_HOST, "&Vinci Name Service Host IP address",
            getFieldEditorParent()));

    addField(new StringFieldEditor(P_VNS_PORT, "Vinci NameService &Port number",
            getFieldEditorParent()));
  }
View Full Code Here

Examples of org.eclipse.jface.preference.StringFieldEditor

        addField(new BooleanFieldEditor(
                PreferenceConstants.USE_FIRST_LINE_AS_HEADER,
                "&Use the first line of the CSV file as the column headers",
                getFieldEditorParent()));

        StringFieldEditor customDelimiterField = new StringFieldEditor(
                PreferenceConstants.CUSTOM_DELIMITER,
                "Choose the delimiter to use:", 2, getFieldEditorParent());
        customDelimiterField.setTextLimit(1);
        customDelimiterField.setEmptyStringAllowed(false);
        addField(customDelimiterField);

        StringFieldEditor textQualifierChar = new StringFieldEditor(
                PreferenceConstants.TEXT_QUALIFIER,
                "Define the character used as a text qualifier of the data:", 2, getFieldEditorParent());
        customDelimiterField.setTextLimit(1);
        customDelimiterField.setEmptyStringAllowed(false);
        addField(textQualifierChar);
        addField(new BooleanFieldEditor(
                PreferenceConstants.USE_QUALIFIER,
                "For the text qualifier to be used for all fields",
                getFieldEditorParent()));

        StringFieldEditor commentChar = new StringFieldEditor(
                PreferenceConstants.COMMENT_CHAR,
                "Choose the character to use as a comment:", 2, getFieldEditorParent());
        customDelimiterField.setTextLimit(1);
        customDelimiterField.setEmptyStringAllowed(true);
        addField(commentChar);
View Full Code Here

Examples of org.eclipse.jface.preference.StringFieldEditor

    DirectoryFieldEditor  forteRoot = new DirectoryFieldEditor(
        ToolPlugin.FORTE_ROOT_PREFERENCE,
        "&Forte Root:",
        getFieldEditorParent());
      addField(forteRoot);
      StringFieldEditor  forteLogger = new StringFieldEditor (
          ToolPlugin.FORTE_LOGGER_PREFERENCE,
          "&Log Flags:",
           getFieldEditorParent());
        addField(forteLogger)
   
View Full Code Here

Examples of org.eclipse.jface.preference.StringFieldEditor

    cbSeverity = new ComboFieldEditor(SEVERITY, "Show wicket errors as", severityValues, composite);
    cbSeverity.setPreferenceStore(getPreferenceStore());
    cbSeverity.setPage(this);
    cbSeverity.load();

    sfExcludes = new StringFieldEditor(EXCLUDES, "exclude project paths from being checked (comma separated)", composite);
    sfExcludes.setPreferenceStore(getPreferenceStore());
    sfExcludes.setPage(this);
    sfExcludes.load();

    rgAdder = new RadioGroupFieldEditor(ADDERS_TO, "add new components to", 1, new String[][] { { "Constructor", "ctor" }, { "onInitialize", "init" } }, composite);
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.