001package jmri.jmrit.operations.trains.excel;
002
003/**
004 * A convenient place to access operations xml element and attribute names.
005 *
006 * @author Daniel Boudreau Copyright (C) 2013
007 * 
008 *
009 */
010public class Xml {
011
012    private Xml(){
013       // class of constants
014    }
015
016    // Common to operation xml files
017    static final String NAME = "name"; // NOI18N
018
019    // ManifestCreator.java
020    static final String MANIFEST_CREATOR = "manifestCreator"; // NOI18N
021    static final String RUN_FILE = "runFile"; // NOI18N
022    static final String DIRECTORY = "directory"; // NOI18N
023    static final String COMMON_FILE = "commonFile"; // NOI18N
024
025    // SwitchListCreator
026    static final String SWITCHLIST_CREATOR = "switchlistCreator"; // NOI18N
027}