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 selection of alternate track. 010 * 011 * @author Daniel Boudreau Copyright (C) 2011 012 */ 013public class AlternateTrackAction extends AbstractAction { 014 015 private TrackEditFrame _tef; 016 017 public AlternateTrackAction(TrackEditFrame tef) { 018 super(Bundle.getMessage("AlternateTrack")); 019 _tef = tef; 020 } 021 022 @Override 023 public void actionPerformed(ActionEvent e) { 024 new AlternateTrackFrame(_tef); 025 } 026 027}