blob: 104986a860a086d3343a34832d93f2c1d5e692e3 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2018, 2020 Dirk Fauth.
*
* 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:
* Dirk Fauth <dirk.fauth@googlemail.com> - Initial API and implementation
*****************************************************************************/
package org.eclipse.nebula.widgets.nattable.hideshow.indicator;
/**
* Constants for labels with regards to hidden columns and rows.
*
* @since 1.6
*/
public final class HideIndicatorConstants {
/**
* Label that indicates that there are columns hidden to the left of the
* cell.
*/
public static final String COLUMN_LEFT_HIDDEN = "COLUMN_LEFT_HIDDEN"; //$NON-NLS-1$
/**
* Label that indicates that there are columns hidden to the right of the
* cell. Only applied to the right most column.
*/
public static final String COLUMN_RIGHT_HIDDEN = "COLUMN_RIGHT_HIDDEN"; //$NON-NLS-1$
/**
* Label that indicates that there are rows hidden on top of the cell.
*/
public static final String ROW_TOP_HIDDEN = "ROW_TOP_HIDDEN"; //$NON-NLS-1$
/**
* Label that indicates that there are rows hidden at the bottom of the
* cell.
*/
public static final String ROW_BOTTOM_HIDDEN = "ROW_BOTTOM_HIDDEN"; //$NON-NLS-1$
private HideIndicatorConstants() {
// empty constructor for constants class
}
}