Ignore:
Timestamp:
08/16/12 12:34:24 (12 years ago)
Author:
sherbold
Message:
  • countless adaptations throughout nearly all components to remove errors introduced due to the refactoring of the event core
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-ui-core/src/main/java/de/ugoe/cs/quest/ui/commands/CMDgenerateRandomReplay.java

    r434 r547  
    88import de.ugoe.cs.quest.CommandHelpers; 
    99import de.ugoe.cs.quest.ReplayGenerator; 
    10 import de.ugoe.cs.quest.eventcore.ReplayableEvent; 
     10import de.ugoe.cs.quest.eventcore.Event; 
    1111import de.ugoe.cs.quest.ui.GlobalDataContainer; 
    1212import de.ugoe.cs.quest.usageprofiles.IStochasticProcess; 
     
    6767                } 
    6868                model = (IStochasticProcess) dataObject; 
    69                 Collection<List<ReplayableEvent<?>>> sequences = new LinkedList<List<ReplayableEvent<?>>>(); 
     69                Collection<List<Event>> sequences = new LinkedList<List<Event>>(); 
    7070                try { 
    7171                        for (int i = 0; i < numSessions; i++) { 
    7272                                sequences 
    73                                                 .add((List<ReplayableEvent<?>>) model.randomSequence()); 
     73                                                .add((List<Event>) model.randomSequence()); 
    7474                        } 
    7575                } catch (ClassCastException e) { 
Note: See TracChangeset for help on using the changeset viewer.