001package jmri.jmrix.loconet.sdfeditor;
002
003import jmri.jmrix.loconet.sdf.SdfMacro;
004
005/**
006 * Editor panel for the SKEME_START macro from the Digitrax sound definition
007 * language.
008 * <p>
009 * This nests until the next SKEME_START.
010 *
011 * @author Bob Jacobsen Copyright (C) 2007
012 */
013class SkemeStartEditor extends SdfMacroEditor {
014
015    public SkemeStartEditor(SdfMacro inst) {
016        super(inst);
017        // No editor needed, leave default message in place.
018    }
019
020}