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/CMDcalcCoverage.java

    r434 r547  
    4949 
    5050                IStochasticProcess process = null; 
    51                 Collection<List<? extends Event<?>>> observedSequences = null; 
    52                 Collection<List<? extends Event<?>>> sequences = null; 
     51                Collection<List<Event>> observedSequences = null; 
     52                Collection<List<Event>> sequences = null; 
    5353                Object dataObjectProcess = GlobalDataContainer.getInstance().getData( 
    5454                                modelname); 
     
    7373                } 
    7474                process = (IStochasticProcess) dataObjectProcess; 
    75                 observedSequences = (Collection<List<? extends Event<?>>>) dataObjectObserved; 
     75                observedSequences = (Collection<List<Event>>) dataObjectObserved; 
    7676 
    7777                Console.print("seqName"); 
     
    103103                                return; 
    104104                        } 
    105                         sequences = (Collection<List<? extends Event<?>>>) dataObjectSequences; 
     105                        sequences = (Collection<List<Event>>) dataObjectSequences; 
    106106                        Console.print(sequenceName); 
    107107                        for (int length = minLength; length <= maxLength; length++) { 
Note: See TracChangeset for help on using the changeset viewer.