001package jmri.jmrit.etcs;
002
003import org.apiguardian.api.API;
004
005/**
006 * Class to represent a TrackCondition which is a station stop.
007 * @author Steve Young Copyright (C) 2024
008 */
009@API(status=API.Status.EXPERIMENTAL)
010public class StationTrackCondition extends TrackCondition {
011
012    /**
013     * Create a new Station Track Condition.
014     * @param distance distance from start of Movement Authority.
015     * @param name the Station name.
016     */
017    public StationTrackCondition(int distance, String name) {
018        super(distance, false, "", "ATO_21", "", "", "Station: " + name, "");
019    }
020
021}