Warning: Can't use blame annotator:
svn blame failed on trunk/src/scriptbuilder/structures/CadData.java: ("Can't find a temporary directory: Internal error", 20014)

source: tmcsimulator-scriptbuilder/trunk/src/scriptbuilder/structures/CadData.java @ 39

Revision 39, 1.8 KB checked in by bmcguffin, 9 years ago (diff)

Added new data structures to hold CAD data for each TimeSlice?.

RevLine 
1package scriptbuilder.structures;
2
3import java.util.ArrayList;
4
5/**
6 * Aggregation of several information fields relevant to each timeslice.
7 *
8 * @author Bryan McGuffin
9 */
10public class CadData implements I_XML_Writable
11{
12
13    public CadData()
14    {
15        locInfo = new ArrayList<Location_Info>();
16    }
17
18    public TimeSlice tSlice;
19
20    public String Header_Type = "";
21
22    public String Header_Beat = "";
23
24    public String Header_TruncLoc = "";
25
26    public String Header_FullLoc = "";
27
28    public String Master_Inc_Num = "";
29
30    public String Info_Type = "";
31
32    public String Info_Type_Code = "";
33
34    public String Agy = "";
35
36    public String General_Title = "";
37
38    public String General_Text = "";
39   
40    public String Location_Beat = "";
41   
42    public String Location_Loc = "";
43   
44    public String Location_Fire = "";
45   
46    public String Location_Law = "";
47   
48    public String Location_Ems = "";
49   
50    public String Location_City = "";
51   
52    public String Location_Address = "";
53   
54    public String Location_Area = "";
55
56    public ArrayList<Location_Info> locInfo;
57
58    @Override
59    public String toXML()
60    {
61        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
62    }
63
64    @Override
65    public String openTag(String s)
66    {
67        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
68    }
69
70    @Override
71    public String closeTag(String s)
72    {
73        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
74    }
75
76    @Override
77    public String emptyTag(String s)
78    {
79        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
80    }
81
82}
Note: See TracBrowser for help on using the repository browser.