001package jmri.jmrit.display.layoutEditor.LayoutEditorDialogs;
002
003import javax.annotation.*;
004import jmri.jmrit.display.layoutEditor.*;
005
006/**
007 * MVC Editor component for LayoutDoubleXOver objects.
008 *
009 * Note there might not be anything for this class to do;
010 * LayoutTrackEditors has a comment saying that PositionablePoint
011 * doesn't have an editor.
012 *
013 * @author Bob Jacobsen  Copyright (c) 2020
014 * 
015 */
016public class LayoutDoubleXOverEditor extends LayoutXOverEditor {
017
018    /**
019     * constructor method.
020     * @param layoutEditor main layout editor.
021     */
022    public LayoutDoubleXOverEditor(@Nonnull LayoutEditor layoutEditor) {
023        super(layoutEditor);
024    }
025
026    // These now reflect to code in the base class; eventually this heirarchy will
027    // expand and the code will be brought here
028    
029
030    // private final static org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(LayoutDoubleXOverEditor.class);
031}