blob: 7a87e7a7e57554efbbb8c27a73a0760dfbfef15b [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 UnfreezeEvent extends StructuralRefreshEvent {
public UnfreezeEvent(final ILayer layer) {
super(layer);
}
protected UnfreezeEvent(final UnfreezeEvent event) {
super(event);
}
@Override
public UnfreezeEvent cloneEvent() {
return new UnfreezeEvent(this);
}
@Override
public Collection<StructuralDiff> getColumnDiffs() {
return null;
}
@Override
public Collection<StructuralDiff> getRowDiffs() {
return null;
}
}