blob: 79e2aa24514a6b88f41e13a25f4b66bf165dcff3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.views.bookmarkexplorer;
import org.eclipse.jface.viewers.Viewer;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Table;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.internal.views.bookmarkexplorer.BookmarkMessages;
/**
* Action to select all bookmarks.
*/
class SelectAllAction extends BookmarkAction {
/**
* Create a new instance of this class.
*
* @param view the view
*/
public SelectAllAction(BookmarkNavigator view) {
super(view, BookmarkMessages.SelectAll_text);
setToolTipText(BookmarkMessages.SelectAll_toolTip);
PlatformUI.getWorkbench().getHelpSystem().setHelp(this,
IBookmarkHelpContextIds.SELECT_ALL_BOOKMARK_ACTION);
setEnabled(true);
}
public void run() {
Viewer viewer = getView().getViewer();
Control control = viewer.getControl();
if (control instanceof Table) {
((Table) control).selectAll();
viewer.setSelection(viewer.getSelection(), false);
}
}
}