Changeset 1713 for trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs
- Timestamp:
- 09/02/14 15:07:37 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/commands/CMDgenerateJacaretoReplay.java
r1712 r1713 40 40 // helper class for the tree like structure part within a Jacareto file 41 41 class StructureNode { 42 p rivatestatic int nextRef = 0;42 public static int nextRef = 0; 43 43 44 44 public String content; … … 163 163 currentKeyModifiers = 0; 164 164 165 StructureNode.nextRef = 0; 166 165 167 writeJacaretoXML(sequences, filename, classpath, initclass, basepath, classpathext); 166 168 } … … 183 185 // TODO: This header content is basically copy+paste from a 184 186 // specific jacareto replay file right now. 185 // Some things such as screen resolution and especially the186 // application starter details need to be changed for general cases.187 187 writeLine(writer, 188 188 "<Calendar procTime=\"0\" duration=\"0\" year=\"2000\" month=\"1\" date=\"11\" hour=\"1\" min=\"1\" sec=\"1\" uuid=\"06831ba1-f28a-4e05-b46e-ce9d8f9ffa0f\" />"); … … 525 525 return String.valueOf((char)keyCode); 526 526 } 527 528 527 return "_NO_LEGAL_XML_CHAR"; 529 528 }
Note: See TracChangeset
for help on using the changeset viewer.