Examples of DirectoryFieldEditor


Examples of org.eclipse.jface.preference.DirectoryFieldEditor

   * of preferences. Each field editor knows how to save and
   * restore itself.
   */
  public void createFieldEditors()
    {
    addField(new DirectoryFieldEditor(PrefConst.P_DB_DIR, "&Db Dir:", getFieldEditorParent()));

    addField(new FileFieldEditor(PrefConst.P_TEXT_EDITOR_CMD, "&External Text Editor:", getFieldEditorParent()));

    addField(new FontFieldEditor(PrefConst.P_FNT_TREE_STD, "Default Tree Font", getFieldEditorParent()));
   
View Full Code Here

Examples of org.eclipse.jface.preference.DirectoryFieldEditor

   * manipulate various types of preferences. Each field editor knows how to save and restore
   * itself.
   */
  @Override
  public void createFieldEditors() {
    addField(new DirectoryFieldEditor(PreferenceConstants.P_PATH, "&Tiles Directory:",
      getFieldEditorParent()));
  }
View Full Code Here

Examples of org.eclipse.jface.preference.DirectoryFieldEditor

            new StringFieldEditor(
                CactusPreferences.CONTEXT_URL_PATH,
                CactusMessages.getString("CactusPreferencePage.label.context"),
                getFieldEditorParent()));
        addField(
            new DirectoryFieldEditor(
                CactusPreferences.TEMP_DIR,
                CactusMessages.getString("CactusPreferencePage.label.temp"),
                getFieldEditorParent()));
    }
View Full Code Here

Examples of org.eclipse.jface.preference.DirectoryFieldEditor

    public void createFieldEditors()
    {
        Composite parent = getFieldEditorParent();
        for (int i = 0; i < containerIds.length; i++)
        {
            DirectoryFieldEditor dirEditor =
                new DirectoryFieldEditor(
                    containerIds[i],
                    containerIds[i],
                    parent);
            dirEditor.getTextControl(parent).setToolTipText(
                CactusMessages.getString(
                    "ContainersPreferencePage.label.container"));
            addField(dirEditor);
        }
        BooleanFieldEditor jetty =
View Full Code Here

Examples of org.eclipse.jface.preference.DirectoryFieldEditor

   * Creates the field editors. Field editors are abstractions of the common
   * GUI blocks needed to manipulate various types of preferences. Each field
   * editor knows how to save and restore itself.
   */
  public void createFieldEditors() {
    addField(new DirectoryFieldEditor(FORREST_HOME, "&Forrest Home:",
        getFieldEditorParent()));

  }
View Full Code Here

Examples of org.eclipse.jface.preference.DirectoryFieldEditor

  @Override
  protected void createFieldEditors() {
 
   
    DirectoryFieldEditor de = new DirectoryFieldEditor(PreferenceConstants.fieldName, PreferenceConstants.fieldLabel, getFieldEditorParent());
   
    addField(de);
   
   
   
View Full Code Here

Examples of org.eclipse.jface.preference.DirectoryFieldEditor

   * of preferences. Each field editor knows how to save and
   * restore itself.
   */
  public void createFieldEditors() {

    addField(new DirectoryFieldEditor(PreferenceConstants.P_DB_PATH,
                                      "&Directory for object db:",
                                      getFieldEditorParent()));
    addField(new BooleanFieldEditor(PreferenceConstants.P_USE_MAPPED,
        "&Use Memory-Mapped files for DB:",
        getFieldEditorParent()));
View Full Code Here

Examples of org.eclipse.jface.preference.DirectoryFieldEditor

    Composite compTempCols = new Composite(top, SWT.NONE);
    gdFill = new GridData(GridData.FILL_HORIZONTAL);
    compTempCols.setLayoutData(gdFill);
    compTempCols.setLayout(layout3);
    //zona donde coloco la ruta de los ficheros temporales
    DirectoryFieldEditor dfed=new DirectoryFieldEditor(PreferenceConstants.P_PATHLOG,
        Messages.getString("MaudeDaemon.PREF_LOGDIR"), compTempCols);
    dfed.setEmptyStringAllowed(false);
    addField(dfed); //$NON-NLS-1$



    // Control to group the trace options
View Full Code Here

Examples of org.eclipse.jface.preference.DirectoryFieldEditor

   * Creates the field editors. Field editors are abstractions of the common
   * GUI blocks needed to manipulate various types of preferences. Each field
   * editor knows how to save and restore itself.
   */
  public void createFieldEditors() {
    addField(new DirectoryFieldEditor(FORREST_HOME, "&Forrest Home:",
        getFieldEditorParent()));

  }
View Full Code Here

Examples of org.eclipse.jface.preference.DirectoryFieldEditor

   * editor knows how to save and restore itself.
   */
  @Override
  public void createFieldEditors() {
    // TODO externalize
    addField(new DirectoryFieldEditor(Preferences.ECORE_MODEL_PATH,
        "&Ecore Models Location:", getFieldEditorParent())); //$NON-NLS-1$
  }
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.