blob: 912b0c797a374d4f134c4ff1078a2bf7e4b659dc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2020 Original 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 authors and others - initial API and implementation
******************************************************************************/
package org.eclipse.nebula.widgets.nattable.layer.event;
import org.eclipse.nebula.widgets.nattable.command.ILayerCommand;
import org.eclipse.nebula.widgets.nattable.command.ILayerCommandHandler;
import org.eclipse.nebula.widgets.nattable.layer.ILayer;
/**
* Event fired by the {@link ILayerCommandHandler} classes (usually to signal to
* handling of a {@link ILayerCommand}). Every layer in the grid is given a
* chance to respond to an event via
* {@link ILayer#handleLayerEvent(ILayerEvent)}.
*
* @see ILayerEventHandler
*/
public interface ILayerEvent {
/**
* Convert the column/row positions carried by the event to the layer about
* to handle the event.
*
* @param localLayer
* layer about to receive the event
* @return TRUE if successfully converted, FALSE otherwise
*/
public boolean convertToLocal(ILayer localLayer);
/**
* @return A cloned copy of the event. This cloned copy is provided to each
* listener.
*/
public ILayerEvent cloneEvent();
}