source: tmcsimulator/trunk/src/archive/ExchangeInfo.java @ 340

Revision 340, 330 bytes checked in by jdalbey, 7 years ago (diff)

move old ATMS driver to archive package

Line 
1package archive;
2
3/**
4 *
5 * @author John A Torres
6 */
7public class ExchangeInfo {
8        /** The network ID **/
9        public int networkId;
10
11        /** The XML message **/
12        public String xmlMessage;
13       
14        /** Constructor **/
15        public ExchangeInfo(int networkId, String xmlMessage)
16        {
17                this.networkId = networkId;
18                this.xmlMessage = xmlMessage;
19        }
20}
Note: See TracBrowser for help on using the repository browser.