blob: 422bbf8e769b1fed801cd005aedc22e9c18a8dad [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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.ui.internal.provisional.views.markers;
import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.ui.handlers.HandlerUtil;
/**
* ConfigureFiltersHandler the handler for opening the configure filters
* dialog.
* @since 3.4
*
*/
public class ConfigureFiltersHandler extends AbstractHandler {
/* (non-Javadoc)
* @see org.eclipse.core.commands.AbstractHandler#execute(org.eclipse.core.commands.ExecutionEvent)
*/
public Object execute(ExecutionEvent arg0) {
IWorkbenchPart part = HandlerUtil.getActivePart(arg0);
if(part != null)
((ExtendedMarkersView) part).openFiltersDialog();
return part;
}
}