Package org.eclipse.ui.internal.dialogs

Examples of org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog


   * @since 3.1
   * @see PreferenceDialog#PreferenceDialog(Shell, PreferenceManager)
   */
  public static final PreferenceDialog createPreferenceDialogOn(Shell shell,
      String preferencePageId, String[] displayedIds, Object data) {
    FilteredPreferenceDialog dialog = WorkbenchPreferenceDialog.createDialogOn(shell,
        preferencePageId);

    applyOptions(data, displayedIds, dialog);

    return dialog;
View Full Code Here


   * @since 3.1
   */
  public static final PreferenceDialog createPropertyDialogOn(Shell shell,
      final IAdaptable element, String propertyPageId, String[] displayedIds, Object data) {

    FilteredPreferenceDialog dialog = PropertyDialog.createDialogOn(shell, propertyPageId,
        element);

    if (dialog == null) {
      return null;
    }
View Full Code Here

TOP

Related Classes of org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog

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.