001package jmri;
002
003/**
004 * Provide access to basic functions of a clock face, that displays time in some
005 * particular way.
006 * <p>
007 * There's really not all that much here, and an abstract interface is perhaps
008 * not yet needed.
009 * <p>
010 * This file is part of JMRI.
011 * <p>
012 * JMRI is free software; you can redistribute it and/or modify it under the
013 * terms of version 2 of the GNU General Public License as published by the Free
014 * Software Foundation. See the "COPYING" file for a copy of this license.
015 * <p>
016 * JMRI is distributed in the hope that it will be useful, but WITHOUT ANY
017 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
018 * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
019 *
020 * @author Bob Jacobsen Copyright (C) 2004
021 */
022public interface TimeDisplay {
023
024    void setUpdateRate(int msec);
025
026    int getUpdateRate();
027
028}