Changeset 142 in tmcsimulator-scriptbuilder
- Timestamp:
- 01/04/2018 09:29:09 AM (8 years ago)
- Location:
- trunk/src/scriptbuilder/structures
- Files:
-
- 2 edited
-
CadData.java (modified) (1 diff)
-
TimeSlice.java (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/scriptbuilder/structures/CadData.java
r141 r142 18 18 public TimeSlice tSlice; 19 19 20 public String Header_Type = " ";20 public String Header_Type = "DEFAULT"; 21 21 22 22 public String Header_Beat = ""; -
trunk/src/scriptbuilder/structures/TimeSlice.java
r138 r142 23 23 { 24 24 25 /** 26 * Cad data object for this timeslice. Can be overwritten by call from 27 * parent incident. 28 */ 25 29 CadData cadData = null; 26 30 … … 49 53 events = new ArrayList<I_ScriptEvent>(); 50 54 thisIncident = inc; 55 cadData = new CadData(); 51 56 } 52 57 … … 221 226 output += XMLWriter.openTag(ELEMENT.INCIDENT.tag + " LogNum=\"" + thisIncident.number + "\""); 222 227 output += thisIncident.name + XMLWriter.closeTag(ELEMENT.INCIDENT.tag); 223 output += XMLWriter.emptyTag(ELEMENT.COLOR.tag 228 output += XMLWriter.emptyTag(ELEMENT.COLOR.tag 224 229 + " r=\"" + thisIncident.color.getRed() + "\"" 225 230 + " g=\"" + thisIncident.color.getGreen() + "\""
Note: See TracChangeset
for help on using the changeset viewer.
