Changeset 704


Ignore:
Timestamp:
08/29/12 16:22:31 (12 years ago)
Author:
pharms
Message:
  • renamed interaction event list to correctly state, what it is, a list of sorted interaction events
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/JFCLogParser.java

    r655 r704  
    3232import de.ugoe.cs.quest.eventcore.Event; 
    3333import de.ugoe.cs.quest.eventcore.gui.IInteraction; 
    34 import de.ugoe.cs.quest.eventcore.gui.InteractionEventList; 
    3534import de.ugoe.cs.quest.eventcore.gui.KeyPressed; 
    3635import de.ugoe.cs.quest.eventcore.gui.KeyReleased; 
     
    9392     * </p> 
    9493     */ 
    95     private InteractionEventList currentSequence; 
     94    private List<Event> currentSequence; 
    9695    
    9796    /** 
     
    167166    public JFCLogParser() { 
    168167        sequences = new LinkedList<List<Event>>(); 
    169         currentSequence = new InteractionEventList(); 
     168        currentSequence = null; 
    170169        setupDefaultEventFilter(); 
    171170    } 
     
    185184    public JFCLogParser(Collection<JFCEventId> ignoredEvents) { 
    186185        sequences = new LinkedList<List<Event>>(); 
    187         currentSequence = new InteractionEventList(); 
     186        currentSequence = null; 
    188187        eventFilter = ignoredEvents; 
    189188    } 
     
    300299    { 
    301300        if (qName.equals("sessions")) { 
    302             currentSequence = new InteractionEventList(); 
     301            currentSequence = new LinkedList<Event>(); 
    303302        } 
    304303        if (qName.equals("newsession")) { 
     
    308307                sequences.add(currentSequence.subList(0, currentSequence.size() - 1)); 
    309308            } 
    310             currentSequence = new InteractionEventList(); 
     309            currentSequence = new LinkedList<Event>(); 
    311310        } 
    312311        else if (qName.equals("event")) { 
Note: See TracChangeset for help on using the changeset viewer.