blob: 5360aa06312a62683489be9a4e5a170f5c1c7253 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2003, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
****************************************************************************/
package org.eclipse.gmf.runtime.diagram.ui.internal.dialogs.sortfilter;
import org.eclipse.jface.preference.PreferenceDialog;
import org.eclipse.jface.preference.PreferenceNode;
import org.eclipse.gmf.runtime.diagram.ui.dialogs.sortfilter.SortFilterPage;
/**
* Extended to provide access from the <code>PreferenceNode</code> to the <code>
* PreferenceDialog</code>.
*
* @author jcorchis
*/
public class SortFilterRootPreferenceNode extends PreferenceNode {
private PreferenceDialog preferenceDialog;
/**
* Constructor for <code>SortFilterRootPreferenceNode</code>
* @param rootName name of the root node
* @param page the page associated with the root node
* @param sortFilterDialog the <code>PreferenceDialog</code>
*/
public SortFilterRootPreferenceNode(String rootName, SortFilterPage page, PreferenceDialog sortFilterDialog) {
super(rootName, page);
this.preferenceDialog = sortFilterDialog;
}
/**
* Returns the <code>PreferenceDialog</code> associated with this <code>PreferenceNode</code>
* @return the <code>PreferenceDialog</code> associated with this <code>PreferenceNode</code>
*/
public PreferenceDialog getPreferenceDialog() {
return this.preferenceDialog;
}
}