001package jmri.jmrit.operations.locations.tools; 002 003import java.awt.event.ActionEvent; 004import javax.swing.AbstractAction; 005 006import jmri.jmrit.operations.locations.gui.TrackEditFrame; 007 008/** 009 * Action to launch edit of track comments. 010 * 011 * @author Daniel Boudreau Copyright (C) 2013 012 */ 013public class TrackEditCommentsAction extends AbstractAction { 014 015 private TrackEditFrame _tef; 016 017 public TrackEditCommentsAction(TrackEditFrame tef) { 018 super(Bundle.getMessage("MenuItemComments")); 019 _tef = tef; 020 } 021 022 @Override 023 public void actionPerformed(ActionEvent e) { 024 new TrackEditCommentsFrame(_tef._track); 025 } 026}