blob: d81d65c9704a176c444a7657f29b4496ec6ccef0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.views.markers.internal;
import org.eclipse.jface.action.Action;
/**
* This action opens a Filters Dialog and notifies the Marker View if the user has
* modified the filter via the filters dialog.
*/
class FiltersAction extends Action {
private MarkerView view;
/**
* Creates the action
*/
public FiltersAction(MarkerView view) {
super(Messages.getString("filtersAction.title")); //$NON-NLS-1$
setImageDescriptor(ImageFactory.getImageDescriptor("elcl16/filter_ps.gif")); //$NON-NLS-1$
setToolTipText(Messages.getString("filtersAction.tooltip")); //$NON-NLS-1$
this.view = view;
setEnabled(true);
}
/**
* Opens the dialog. Notifies the view if the filter has been modified.
*/
public void run() {
view.openFiltersDialog();
}
}