Ignore:
Timestamp:
09/27/11 20:09:17 (13 years ago)
Author:
sherbold
Message:
  • Changed data type for handling of sequence-sets. Before, List<List<Event<?>>> was used, now Collection<List<Event<?>>> is used.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/commands/CMDshowSequences.java

    r140 r203  
    22 
    33import java.security.InvalidParameterException; 
     4import java.util.Collection; 
    45import java.util.List; 
    56 
     
    2223                        throw new InvalidParameterException(); 
    2324 
    24                 List<List<Event<?>>> containedSequences = null; 
     25                Collection<List<Event<?>>> containedSequences = null; 
    2526 
    2627                try { 
    27                         containedSequences = (List<List<Event<?>>>) GlobalDataContainer 
     28                        containedSequences = (Collection<List<Event<?>>>) GlobalDataContainer 
    2829                                        .getInstance().getData("sequences"); 
    2930                } catch (ClassCastException e) { 
Note: See TracChangeset for help on using the changeset viewer.