001package jmri.jmrit.ussctc;
002
003/**
004 * Define common constants for the ussctc package.
005 * <p>
006 * Names automatically created by the package have a common
007 * start which consists of a prefix and suffix
008 * defined here, sandwiched around the name of the class creating them.
009 * e.g. "USS CTC:OSINDICATOR:1:CTC TC 57" for something for "CTC TC 57"
010 * created by the OsIndicator class.
011 *
012 * @author Bob Jacobsen Copyright (C) 2007
013 */
014public interface Constants {
015
016    String nameDivider = ":";
017    String pkgPrefix = "USS CTC";
018
019    String commonNamePrefix = pkgPrefix + nameDivider;
020    String commonNameSuffix = nameDivider + "1" + nameDivider;
021    // the "1" is a placeholder for later, in case more that one machine/code line 
022    // is needed
023
024}