/* * Copyright (C) 2006-2016 DLR, Germany * * All rights reserved * * http://www.rcenvironment.de/ */ package de.rcenvironment.components.excel.gui.view; /** * Constants for ExcelView. * * @author Markus Kunde */ public final class ExcelViewConstants { /** * Time constant how often thread should look for new channel values. */ public static final int UITHREAD_SLEEPER = 200; /** * Width of normal column. */ public static final int NORMALCOLUMNWIDTH = 150; /** * Private constructor. */ private ExcelViewConstants() {} }