blob: 650a5bacf1c874860cb03f375828eeb665dd9b1f [file] [log] [blame]
package org.eclipse.ui.views.tasklist;
/**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. and others.
All rights reserved.   This program and the accompanying materials
are made available under the terms of the Common Public License v0.5
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/cpl-v05.html
 
Contributors:
**********************************************************************/
import org.eclipse.ui.help.WorkbenchHelp;
/**
* This action opens an editor for the resource
* associated with the selected marker, and
* jumps to the marker's location in the editor.
*/
/* package */ class FiltersAction extends TaskAction {
/**
* Creates the action.
*/
public FiltersAction(TaskList tasklist, String id) {
super(tasklist, id);
WorkbenchHelp.setHelp(this, ITaskListHelpContextIds.FILTERS_ACTION);
}
/**
* Performs this action.
*/
public void run() {
FiltersDialog dialog = new FiltersDialog(getShell());
TasksFilter filter = getTaskList().getFilter();
dialog.setFilter(filter);
int result = dialog.open();
if (result == FiltersDialog.OK) {
getTaskList().filterChanged();
}
}
}