source: tmcsimulator/trunk/src/archive/paramsim/paramicssimulator/ParamicsSimulationInfo.java @ 66

Revision 66, 483 bytes checked in by jdalbey, 9 years ago (diff)

Import Paramics Simulator.

Line 
1package paramsim.paramicssimulator;
2
3/**
4 * A class which encapsulates the data present in an Paramics incident status document.
5 *
6 * @author Greg Eddington (geddingt@calpoly.edu)
7 */
8public class ParamicsSimulationInfo 
9{
10        /** The network ID **/
11        public int networkId;
12
13        /** The XML message **/
14        public String xmlMessage;
15       
16        /** Constructor **/
17        public ParamicsSimulationInfo(int networkId, String xmlMessage)
18        {
19                this.networkId = networkId;
20                this.xmlMessage = xmlMessage;
21        }
22}
Note: See TracBrowser for help on using the repository browser.