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