blob: 7ba2c40a807c521690f3ac9a88fd516df91821eb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2005 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
*******************************************************************************/
/*
* Created on Feb 9, 2004
*
*/
package org.eclipse.ui.navigator.internal.filters;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.IAction;
import org.eclipse.ui.navigator.CommonNavigator;
import org.eclipse.ui.navigator.internal.NavigatorMessages;
/**
*
* <p>
* <strong>EXPERIMENTAL</strong>. This class or interface has been added as part of a work in
* progress. There is a guarantee neither that this API will work nor that it will remain the same.
* Please do not use this API without consulting with the Platform/UI team.
* </p>
*
* @since 3.2
*/
public class SelectFiltersAction extends Action implements IAction {
private final CommonNavigator commonNavigator;
public SelectFiltersAction(CommonNavigator aCommonNavigator) {
super(NavigatorMessages.getString("SelectFiltersActionDelegate.0")); //$NON-NLS-1$
setToolTipText(NavigatorMessages.getString("SelectFiltersActionDelegate.1")); //$NON-NLS-1$
commonNavigator = aCommonNavigator;
}
public void run() {
CommonFilterSelectionDialog filterSelectionDialog = new CommonFilterSelectionDialog(commonNavigator);
filterSelectionDialog.open();
}
}