blob: 0803ff360b90af4047933826752011fa17bac17e [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2012, 2020 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;
}
}