blob: b85d35cb93d450a5010ab52967d29a50e6304f5a [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.tickupdate;
import org.eclipse.statet.ecommons.waltable.edit.gui.TickUpdateCellEditDialog;
import org.eclipse.statet.ecommons.waltable.style.ConfigAttribute;
/**
* The configuration attributes for tick updates.
*/
public class TickUpdateConfigAttributes {
/**
* The configuration attribute for registering the {@link ITickUpdateHandler} to use.
*/
public static final ConfigAttribute<ITickUpdateHandler> UPDATE_HANDLER= new ConfigAttribute<>();
/**
* The configuration attribute to configure how the tick updates should be usable in the
* {@link TickUpdateCellEditDialog}. If there is no value registered for this attribute
* the dialog will be opened with this value set to <code>false</code>.
*/
public static final ConfigAttribute<Boolean> USE_ADJUST_BY= new ConfigAttribute<>();
}