blob: ec1c649bac8a11499472280e2fbea27702ba2f7b [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.grid;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.statet.ecommons.waltable.command.AbstractContextFreeCommand;
/**
* Command that is propagated when NatTable starts up. This gives every layer a
* chance to initialize itself and compute its structural caches.
*/
public class InitializeGridCommand extends AbstractContextFreeCommand {
private final Composite tableComposite;
public InitializeGridCommand(final Composite tableComposite) {
this.tableComposite= tableComposite;
}
public Composite getTableComposite() {
return this.tableComposite;
}
}