/******************************************************************************* * Copyright (c) 2012 Original authors and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Original authors and others - initial API and implementation ******************************************************************************/ package org.eclipse.nebula.widgets.nattable.ui.mode; public interface Mode { public static final String NORMAL_MODE = "NORMAL_MODE"; //$NON-NLS-1$ public static final String COLUMN_RESIZE_MODE = "COLUMN_RESIZE_MODE"; //$NON-NLS-1$ public static final String COLUMN_SORT_MODE = "COLUMN_SORT_MODE"; //$NON-NLS-1$ public static final String COLUMN_REORDER_MODE = "COLUMN_REORDER_MODE"; //$NON-NLS-1$ public static final String COLUMN_HEADER_MODE = "COLUMN_HEADER_MODE"; //$NON-NLS-1$ public static final String COLUMN_GROUP_MODE = "COLUMN_GROUP_MODE"; //$NON-NLS-1$ public static final String ROW_RESIZE_MODE = "ROW_RESIZE_MODE"; //$NON-NLS-1$ public static final String MOUSE_SELECTION_MODE = "MOUSE_SELECTION_MODE"; //$NON-NLS-1$ }