blob: daf36279b2931e149fdb6e0ad69d856ce43d92b7 [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.widget;
/**
* Enumeration for edit mode. Only specifies two possible values for editing
* inline or in a dialog. It is needed to be able to add specific behaviour or
* rendering dependent on the edit mode, e.g. adding a border to editor controls
* showed in a dialog or adding move after commit to inline editors.
*/
public enum EditModeEnum {
/**
* Edit mode for editing cells inline
*/
INLINE,
/**
* Edit mode for editing cells in a subdialog
*/
DIALOG
}