blob: 97e157892e6bc54b6f1fa204d0947b6d2024f5e3 [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.search.internal.ui;
import org.eclipse.jface.action.Action;
class ShowPreviousResultAction extends Action {
private SearchResultViewer fViewer;
public ShowPreviousResultAction(SearchResultViewer viewer) {
super(SearchMessages.getString("SearchResultView.showPrev.text")); //$NON-NLS-1$
SearchPluginImages.setImageDescriptors(this, SearchPluginImages.T_LCL, SearchPluginImages.IMG_LCL_SEARCH_PREV);
setToolTipText(SearchMessages.getString("SearchResultView.showPrev.tooltip")); //$NON-NLS-1$
fViewer= viewer;
}
public void run() {
fViewer.showPreviousResult();
}
}