blob: d2b717e325b8ff028a18261f2c2fbc30b9244244 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2012, 2021 Dirk Fauth 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:
# Dirk Fauth - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.ecommons.waltable.persistence;
import org.eclipse.statet.ecommons.waltable.NatTable;
import org.eclipse.statet.ecommons.waltable.command.AbstractContextFreeCommand;
public class DisplayPersistenceDialogCommand extends AbstractContextFreeCommand {
/**
* The NatTable instance to call the PersistenceDialog for.
*/
private final NatTable natTable;
/**
*
* @param natTable The NatTable instance to call the PersistenceDialog for.
*/
public DisplayPersistenceDialogCommand(final NatTable natTable) {
this.natTable= natTable;
}
/**
* @return The NatTable instance to call the PersistenceDialog for.
*/
public NatTable getNatTable() {
return this.natTable;
}
}