001package jmri.jmrix.jinput.treecontrol;
002
003import jmri.util.JmriJFrameAction;
004
005/**
006 * Create a JInput control window.
007 *
008 * @author Bob Jacobsen Copyright 2008
009 */
010public class TreeAction extends JmriJFrameAction {
011
012    public TreeAction(String s) {
013        super(s);
014    }
015
016    public TreeAction() {
017        this(Bundle.getMessage("USBInputControl"));
018    }
019
020    @Override
021    public String getName() {
022        return "jmri.jmrix.jinput.treecontrol.TreeFrame";
023    }
024}