blob: f99f5b9058ed755841e4079a3180fd9dc5eb6d3a [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2012, 2021 Original NatTable 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 NatTable authors and others - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.ecommons.waltable.copy;
import org.eclipse.statet.ecommons.waltable.command.AbstractContextFreeCommand;
import org.eclipse.statet.ecommons.waltable.config.IConfigRegistry;
public class CopyToClipboardCommand extends AbstractContextFreeCommand {
private final String cellDelimeter;
private final String rowDelimeter;
private final IConfigRegistry configRegistry;
public CopyToClipboardCommand(final String cellDelimeter, final String rowDelimeter, final IConfigRegistry configRegistry) {
this.cellDelimeter= cellDelimeter;
this.rowDelimeter= rowDelimeter;
this.configRegistry= configRegistry;
}
public String getCellDelimeter() {
return this.cellDelimeter;
}
public String getRowDelimeter() {
return this.rowDelimeter;
}
public IConfigRegistry getConfigRegistry() {
return this.configRegistry;
}
}