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