blob: e00f3262630782f4bfe32af59fe4805da965852b [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.jdt.internal.junit.ui;
import org.eclipse.jface.action.Action;
/**
* Action to enable/disable stack trace filtering.
*/
public class CompareResultsAction extends Action {
private FailureTraceView fView;
public CompareResultsAction(FailureTraceView view) {
super(JUnitMessages.getString("CompareResultsAction.label")); //$NON-NLS-1$
setDescription(JUnitMessages.getString("CompareResultsAction.description")); //$NON-NLS-1$
setToolTipText(JUnitMessages.getString("CompareResultsAction.tooltip")); //$NON-NLS-1$
setDisabledImageDescriptor(JUnitPlugin.getImageDescriptor("dlcl16/compare.gif")); //$NON-NLS-1$
setHoverImageDescriptor(JUnitPlugin.getImageDescriptor("clcl16/compare.gif")); //$NON-NLS-1$
setImageDescriptor(JUnitPlugin.getImageDescriptor("elcl16/compare.gif")); //$NON-NLS-1$
//WorkbenchHelp.setHelp(this, IJUnitHelpContextIds.ENABLEFILTER_ACTION);
fView= view;
setEnabled(false);
}
/*
* @see Action#actionPerformed
*/
public void run() {
CompareResultDialog dialog= new CompareResultDialog(fView.getShell(), fView.getFailedTest());
dialog.create();
dialog.open();
}
}