001package jmri.jmrit.swing;
002
003import javax.swing.Action;
004
005/**
006 * Identifies an Action that can be added to the Tools menu
007 * by being instantiated as @ServiceProvider(service = jmri.jmrit.swing.ToolsMenuItem.class)
008 *
009 * @author Bob Jacobsen Copyright 2023
010 */
011public interface ToolsMenuAction extends Action {
012
013}