blob: b5854dafca135433be699b39a7944052047c5adb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2017 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
*******************************************************************************/
package org.eclipse.dltk.ui.actions;
import org.eclipse.core.runtime.Assert;
import org.eclipse.dltk.internal.ui.actions.ActionMessages;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.viewers.TableViewer;
/**
* This action selects all entries currently showing in view.
*/
public class SelectAllAction extends Action {
private TableViewer fViewer;
/**
* Creates the action.
*/
public SelectAllAction(TableViewer viewer) {
super("selectAll"); //$NON-NLS-1$
setText(ActionMessages.SelectAllAction_label);
setToolTipText(ActionMessages.SelectAllAction_tooltip);
//PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.SELECT_ALL_ACTION);
Assert.isNotNull(viewer);
fViewer= viewer;
}
/**
* Selects all resources in the view.
*/
@Override
public void run() {
fViewer.getTable().selectAll();
// force viewer selection change
fViewer.setSelection(fViewer.getSelection());
}
}