Changeset 203 in tmcsimulator-scriptbuilder for trunk/src/scriptbuilder/structures/events/ATMSEvaluationEvent.java
- Timestamp:
- 02/01/2020 04:18:21 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/scriptbuilder/structures/events/ATMSEvaluationEvent.java
r76 r203 10 10 import scriptbuilder.structures.I_XML_Writable; 11 11 import scriptbuilder.structures.ScriptEvent; 12 import scriptbuilder.structures.XML Writer;12 import scriptbuilder.structures.XMLBuilder; 13 13 14 14 /** … … 60 60 public String toXML() 61 61 { 62 String output = XML Writer.openTag(ELEMENT.ATMS_EVALUATION.tag);62 String output = XMLBuilder.openTag(ELEMENT.ATMS_EVALUATION.tag); 63 63 if (expectedAction != null) 64 64 { … … 69 69 str = ""; 70 70 } 71 output += XML Writer.simpleTag(str, ELEMENT.EXPECTED_ACTION);71 output += XMLBuilder.simpleTag(str, ELEMENT.EXPECTED_ACTION); 72 72 } 73 73 } 74 output += XML Writer.closeTag(ELEMENT.ATMS_EVALUATION.tag);74 output += XMLBuilder.closeTag(ELEMENT.ATMS_EVALUATION.tag); 75 75 76 76 return output;
Note: See TracChangeset
for help on using the changeset viewer.
