blob: 117ef0c7356f2b742ef3144d1c7d3a43a4db9cdb [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.freeze;
import java.util.Collection;
import org.eclipse.statet.ecommons.waltable.layer.ILayer;
import org.eclipse.statet.ecommons.waltable.layer.event.StructuralDiff;
import org.eclipse.statet.ecommons.waltable.layer.event.StructuralRefreshEvent;
public class FreezeEvent extends StructuralRefreshEvent {
public FreezeEvent(final ILayer layer) {
super(layer);
}
protected FreezeEvent(final FreezeEvent event) {
super(event);
}
@Override
public FreezeEvent cloneEvent() {
return new FreezeEvent(this);
}
@Override
public Collection<StructuralDiff> getColumnDiffs() {
return null;
}
@Override
public Collection<StructuralDiff> getRowDiffs() {
return null;
}
}