001package jmri.jmrit.display.layoutEditor.LayoutEditorDialogs;
002
003import javax.annotation.Nonnull;
004
005import jmri.jmrit.display.layoutEditor.LayoutEditor;
006
007/**
008 * MVC Editor component for LayoutSingleSlip objects.
009 *
010 * The single slip is the default behavior of the LayoutSlipEditor super class
011 *
012 * @author Bob Jacobsen  Copyright (c) 2020
013 * 
014 */
015public class LayoutSingleSlipEditor extends LayoutSlipEditor {
016
017    /**
018     * constructor method.
019     * @param layoutEditor main layout editor.
020     */
021    public LayoutSingleSlipEditor(@Nonnull LayoutEditor layoutEditor) {
022        super(layoutEditor);
023    }
024
025    // These now reflect to code in the base class; eventually this heirarchy will
026    // expand and the code will be brought here
027    
028
029    // private final static org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(LayoutSingleSlipEditor.class);
030}