Ignore:
Timestamp:
12/14/12 15:10:12 (11 years ago)
Author:
pharms
Message:
  • changed logfile format to XML
  • included logging of GUI structure
  • moved robot detection into monitor
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-htmlmonitor/src/main/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlMonitorLogManager.java

    r927 r1019  
    115115     */ 
    116116    @Override 
    117     public void handleMessage(HtmlClientInfos clientInfos, HtmlEvent[] events) { 
     117    public void handleMessage(HtmlClientInfos clientInfos, 
     118                              HtmlPageElement guiStructure, 
     119                              HtmlEvent[]     events) 
     120    { 
    118121        HtmlMonitorOutputWriter writer = writers.get(clientInfos.getClientId()); 
    119122         
     
    132135            } 
    133136 
    134             writer.handleMessage(clientInfos, events); 
     137            writer.handleMessage(clientInfos, guiStructure, events); 
    135138        } 
    136139        catch (Exception e) { 
     
    144147            if (writer != null) { 
    145148                try { 
    146                     writer.handleMessage(clientInfos, events); 
     149                    writer.handleMessage(clientInfos, guiStructure, events); 
    147150                } 
    148151                catch (Exception e1) { 
Note: See TracChangeset for help on using the changeset viewer.