Changeset 1802


Ignore:
Timestamp:
10/22/14 13:59:55 (10 years ago)
Author:
funger
Message:

bug fix: spelling mistake element sessions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-androidmonitor/src/de/ugoe/cs/autoquest/androidmonitor/AndroidmonitorLogFile.java

    r1756 r1802  
    2828 
    2929        public AndroidmonitorLogFile(String appName, File dir) { 
    30                 this.name = "android_" + appName + "_LogFile.xml"; 
     30                this.name = "androidLogFile_" + appName + System.currentTimeMillis() + ".log"; 
    3131 
    3232                try { 
     
    5353                                // getDeviceInformation. 
    5454 
    55                                 String string = "<?xml version='1.0' encoding='UTF-8' standalone='yes' ?><session>" 
     55                                String string = "<?xml version='1.0' encoding='UTF-8' standalone='yes' ?><sessions>"  
    5656                                                + getDeviceInformation() + getAppInformation(); 
    5757                                try { 
     
    203203                        // TODO add ancestors @see: 
    204204                        // de.ugoe.cs.autoquest.jfcmonitor.JFCComponent#getClassHierarchy() 
     205                         
     206                        /* This solution leads to java.lang.OutOfMemory! 
     207                        serializer.startTag("", "ancestors"); 
     208                         
     209                        Class<? extends Object> classobject = view.getClass(); 
     210                        while(classobject != null){ 
     211                                serializer.startTag("", "ancestor"); 
     212                                serializer.attribute("", "name", classobject.getName()); 
     213                                serializer.endTag("", "ancestor"); 
     214                        } 
     215                        serializer.endTag("", "ancestors"); 
     216                        */ 
    205217 
    206218                        serializer.endTag("", "component"); 
Note: See TracChangeset for help on using the changeset viewer.