Changeset 1713


Ignore:
Timestamp:
09/02/14 15:07:37 (10 years ago)
Author:
dmay
Message:

this class variable needs to be resettet between runs

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  
    4040// helper class for the tree like structure part within a Jacareto file 
    4141class StructureNode { 
    42     private static int nextRef = 0; 
     42    public static int nextRef = 0; 
    4343 
    4444    public String content; 
     
    163163        currentKeyModifiers = 0; 
    164164 
     165        StructureNode.nextRef = 0; 
     166 
    165167        writeJacaretoXML(sequences, filename, classpath, initclass, basepath, classpathext); 
    166168    } 
     
    183185        // TODO: This header content is basically copy+paste from a 
    184186        // specific jacareto replay file right now. 
    185         // Some things such as screen resolution and especially the 
    186         // application starter details need to be changed for general cases. 
    187187        writeLine(writer, 
    188188                  "<Calendar procTime=\"0\" duration=\"0\" year=\"2000\" month=\"1\" date=\"11\" hour=\"1\" min=\"1\" sec=\"1\" uuid=\"06831ba1-f28a-4e05-b46e-ce9d8f9ffa0f\" />"); 
     
    525525            return String.valueOf((char)keyCode); 
    526526        } 
    527  
    528527        return "_NO_LEGAL_XML_CHAR"; 
    529528    } 
Note: See TracChangeset for help on using the changeset viewer.