001package jmri.jmrix.loconet.sdfeditor;
002
003import javax.swing.JLabel;
004import jmri.jmrix.loconet.sdf.SdfMacro;
005
006/**
007 * Editor panel for the DELAY_SOUND macro from the Digitrax sound definition
008 * language
009 *
010 * @author Bob Jacobsen Copyright (C) 2007
011 */
012class DelaySoundEditor extends SdfMacroEditor {
013
014    public DelaySoundEditor(SdfMacro inst) {
015        super(inst);
016
017        // remove default message from SdfMacroEditor
018        this.removeAll();
019
020        // and set up our own
021        add(new JLabel("No editor defined for this instruction yet."));
022    }
023
024}