001package jmri.jmrix.bachrus.swing;
002
003import jmri.jmrix.bachrus.SpeedoMenu;
004import jmri.jmrix.bachrus.SpeedoSystemConnectionMemo;
005
006/**
007 * Provide access to Swing components for the Speedo subsystem.
008 *
009 * @author Bob Jacobsen Copyright (C) 2010
010 * @author Paul Bender Copyright (C) 2010
011 * @since 3.5.1
012 */
013public class SpeedoComponentFactory extends jmri.jmrix.swing.ComponentFactory {
014
015    public SpeedoComponentFactory(SpeedoSystemConnectionMemo memo) {
016        this.memo = memo;
017    }
018
019    SpeedoSystemConnectionMemo memo;
020
021    /**
022     * Provide a menu with all items attached to this system connection
023     */
024    @Override
025    public javax.swing.JMenu getMenu() {
026        if (memo.getDisabled()) {
027            return null;
028        }
029        return new SpeedoMenu(memo);
030    }
031}