001package jmri.jmrix.pricom;
002
003import javax.swing.JMenu;
004
005/**
006 * Create a "Pricom" menu containing the Jmri Pricom-specific tools.
007 *
008 * @author Bob Jacobsen Copyright 2003, 2005
009 */
010public class PricomMenu extends JMenu {
011
012    public PricomMenu(String name) {
013        this();
014        setText(name);
015    }
016
017    public PricomMenu() {
018
019        super();
020
021        setText("PRICOM");  // Company name, not translated.
022
023        add(new jmri.jmrix.pricom.pockettester.PocketTesterMenu());
024        add(new jmri.jmrix.pricom.downloader.LoaderPanelAction());
025
026    }
027
028}