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 LayoutLHXOver objects. 009 * 010 * @author Bob Jacobsen Copyright (c) 2020 011 * 012 */ 013public class LayoutLHXOverEditor extends LayoutXOverEditor { 014 015 /** 016 * constructor method. 017 * @param layoutEditor main layout editor. 018 */ 019 public LayoutLHXOverEditor(@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(LayoutLHXOverEditor.class); 028}