001package jmri.jmrix.loconet.sdfeditor; 002 003import javax.swing.JLabel; 004import jmri.jmrix.loconet.sdf.SdfMacro; 005 006/** 007 * Editor panel for the BRANCH_TO macro from the Digitrax sound definition 008 * language 009 * 010 * @author Bob Jacobsen Copyright (C) 2007 011 */ 012class BranchToEditor extends SdfMacroEditor { 013 014 public BranchToEditor(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.")); // NOI18N 022 } 023}