Examples of PathEditor


Examples of org.eclipse.jface.preference.PathEditor

          FileFieldEditor fiField =
            new FileFieldEditor(prefAD.getID(), prefAD.getName(), getFieldEditorParent());
          fiField.setEmptyStringAllowed(true);
          addField(fiField);
        } else if (attrType == PreferenceAD.PATH) {     
          PathEditor pField =
            new PathEditor(prefAD.getID(), prefAD.getName(), prefAD.getName(), getFieldEditorParent());
          addField(pField);
        } else if (attrType == PreferenceAD.TEXT) {   
          StringFieldEditor sField =
            new StringFieldEditor(prefAD.getID(), prefAD.getName(), getFieldEditorParent());
          addField(sField);
View Full Code Here

Examples of org.eclipse.jface.preference.PathEditor

                "Add class paths to locate classes in name resolving. The "
                        + "directories of the projects in the current workspace are "
                        + "added automatically and need not be specified explicitly.");

        Composite currentComposite = _newComposite(composite);
        _extraClassPaths = new PathEditor(
                PreferenceConstants.BACKTRACK_EXTRA_CLASSPATHS,
                "Extra &classpaths:", "Add a path to the classpaths",
                currentComposite);

        GridData gridData = new GridData();
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.