1 11 package org.eclipse.search.internal.ui; 12 13 import org.eclipse.jface.action.Action; 14 15 18 class RemoveAllSearchesAction extends Action { 19 20 public RemoveAllSearchesAction() { 21 super(SearchMessages.SearchResultView_removeAllSearches_text); 22 SearchPluginImages.setImageDescriptors(this, SearchPluginImages.T_LCL, SearchPluginImages.IMG_LCL_SEARCH_REM_ALL); 23 setToolTipText(SearchMessages.SearchResultView_removeAllSearches_tooltip); 24 } 25 26 public void run() { 27 SearchManager.getDefault().removeAllSearches(); 28 } 29 } 30 | Popular Tags |