blob: 575317c0d9de5f9b906bc948152f38f9a763b50b [file] [log] [blame]
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.search.internal.ui;
import org.eclipse.jface.action.Action;
class GotoMarkerAction extends Action {
private SearchResultViewer fViewer;
public GotoMarkerAction(SearchResultViewer viewer) {
super(SearchMessages.getString("SearchResultView.gotoMarker.text")); //$NON-NLS-1$
SearchPluginImages.setImageDescriptors(this, SearchPluginImages.T_LCL, SearchPluginImages.IMG_LCL_SEARCH_GOTO);
setToolTipText(SearchMessages.getString("SearchResultView.gotoMarker.tooltip")); //$NON-NLS-1$
fViewer= viewer;
}
public void run() {
fViewer.showResult();
}
}