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 LayoutDoubleSlip objects.
009 *
010 * @author Bob Jacobsen  Copyright (c) 2020
011 * 
012 */
013public class LayoutDoubleSlipEditor extends LayoutSlipEditor {
014
015    /**
016     * constructor method.
017     * @param layoutEditor main layout editor.
018     */
019    public LayoutDoubleSlipEditor(@Nonnull LayoutEditor layoutEditor) {
020        super(layoutEditor);
021    }
022
023    // These now reflect to code in the base class; eventually this heirarchy will
024    // expand and the code will be brought here
025    
026
027    // private final static org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(LayoutDoubleSlipEditor.class);
028}