001package jmri.jmrit.ctc; 002 003/** 004 * 005 * @author Gregory J. Bedlek Copyright (C) 2018, 2019 006 * 007 * Just a packet of fields: 008 * 009 */ 010public class TrafficLockingInfo { 011 public boolean _mReturnStatus; // JUST a return status, no relation to: 012 public LockedRoute _mLockedRoute; // The locked route object or null if not available. 013 014 public TrafficLockingInfo(boolean returnStatus) { 015 _mReturnStatus = returnStatus; // Whatever the user wants. 016 _mLockedRoute = null; // Assume none allocated. 017 } 018}