001package jmri.jmrit.display.layoutEditor;
002
003import jmri.jmrit.catalog.NamedIcon;
004import jmri.jmrit.display.Editor;
005import jmri.jmrit.display.TurnoutIcon;
006
007/**
008 * This class exists to change the class name that's being 
009 * created for a Layout Editor's Output Indicator so that it will show up
010 * as such in the Layout Editor contextual menu.
011 * 
012 * Please don't add any behaviors here, as that will make 
013 * this work differently from the parent TurnoutIcon.
014 */
015public class OutputIndicator extends TurnoutIcon {
016    public OutputIndicator(NamedIcon ni, Editor editor) {
017        super(ni, editor);
018    }
019    public OutputIndicator(Editor editor) {
020        super(editor);
021    }
022}