001package jmri.jmrit.display.layoutEditor;
002
003import java.awt.geom.Point2D;
004
005import javax.annotation.Nonnull;
006
007/**
008 * MVC View component for the LayoutDoubleSlipclass.
009 *
010 * @author Bob Jacobsen  Copyright (c) 2020
011 * 
012 */
013public class LayoutDoubleSlipView extends LayoutSlipView {
014
015    /**
016     * Constructor method.
017     * @param slip the layout double slip to view.
018     * @param c 2D point.
019     * @param rot rotation.
020     * @param layoutEditor main layout editor.
021     */
022    public LayoutDoubleSlipView(@Nonnull LayoutDoubleSlip slip, Point2D c, double rot, @Nonnull LayoutEditor layoutEditor) {
023        super(slip, c, rot, layoutEditor);
024        // this.slip = slip;
025
026        editor = new jmri.jmrit.display.layoutEditor.LayoutEditorDialogs.LayoutDoubleSlipEditor(layoutEditor);
027    }
028        
029    // final private LayoutDoubleSlip slip;
030
031    // private final static org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(LayoutDoubleSlipView.class);
032}