blob: 9a6554f952b80221f19c516990a120742743cf7f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ote.ui.define.views.handlers;
import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.osee.ote.ui.define.views.TestRunView;
import org.eclipse.ui.handlers.HandlerUtil;
/**
* @author Roberto E. Escobar
*/
public class ToggleFilterHandler extends AbstractHandler {
@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
((TestRunView) HandlerUtil.getActivePartChecked(event)).toggleFilter();
return null;
}
@Override
public boolean isEnabled() {
return true;
}
}