001package jmri.jmrit.operations.automation.gui; 002 003import java.awt.event.ActionEvent; 004 005import javax.swing.AbstractAction; 006 007/** 008 * Action to reset an automation 009 * 010 * @author Daniel Boudreau Copyright (C) 2016 011 */ 012public class AutomationResetAction extends AbstractAction { 013 014 private AutomationTableFrame _frame; 015 016 public AutomationResetAction(AutomationTableFrame frame) { 017 super(Bundle.getMessage("MenuResetAutomation")); 018 _frame = frame; 019 } 020 021 @Override 022 public void actionPerformed(ActionEvent e) { 023 if (_frame._automation != null) { 024 _frame._automation.reset(); 025 } 026 } 027}