Ignore:
Timestamp:
12/05/12 12:54:01 (12 years ago)
Author:
fglaser
Message:
  • MFCLogParser and its components updated to work with generalized GUIElementTree
  • NOTE THAT GUIElementTree ADDS ALL COMPONENTS TO GUIModel NOT ONLY THE USED ONES (compare MFCWindowTree).
  • guimapping-MFC-Dummy.txt added to cover newly discovered classes (needs to be updated).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-plugin-mfc/src/main/java/de/ugoe/cs/autoquest/plugin/mfc/SequenceSplitter.java

    r940 r1006  
    2020 
    2121import de.ugoe.cs.autoquest.eventcore.Event; 
     22import de.ugoe.cs.autoquest.eventcore.guimodel.GUIElementTree; 
    2223import de.ugoe.cs.autoquest.plugin.mfc.eventcore.WindowsMessage; 
    2324import de.ugoe.cs.autoquest.plugin.mfc.eventcore.WindowsMessageType; 
    24 import de.ugoe.cs.autoquest.plugin.mfc.guimodel.MFCWindowTree; 
    2525import de.ugoe.cs.util.console.Console; 
    2626 
     
    8585     * </p> 
    8686     */ 
    87     public SequenceSplitter(MFCWindowTree windowTree) { 
     87    public SequenceSplitter(GUIElementTree guiElementTree) { 
    8888        currentSequence = new LinkedList<WindowsMessage>(); 
    8989        openDowns = 0; 
    9090        initMessages = true; 
    91         tokenGenerator = new EventGenerator(windowTree); 
     91        tokenGenerator = new EventGenerator(guiElementTree); 
    9292        actionSequence = new LinkedList<Event>(); 
    9393        prevMsg = null; 
Note: See TracChangeset for help on using the changeset viewer.