blob: ab93f8556bad922d647d96606086733005cd71e1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2020 Original authors and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Original authors and others - initial API and implementation
******************************************************************************/
package org.eclipse.nebula.widgets.nattable.print.action;
import org.eclipse.nebula.widgets.nattable.NatTable;
import org.eclipse.nebula.widgets.nattable.print.command.PrintCommand;
import org.eclipse.nebula.widgets.nattable.ui.action.IKeyAction;
import org.eclipse.swt.events.KeyEvent;
/**
* IKeyAction that is used to print a NatTable.
*/
public class PrintAction implements IKeyAction {
@Override
public void run(NatTable natTable, KeyEvent event) {
natTable.doCommand(new PrintCommand(natTable.getConfigRegistry(), natTable.getShell()));
}
}