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/windows/LogParser.java

    r198 r203  
    88import java.io.UnsupportedEncodingException; 
    99import java.security.InvalidParameterException; 
     10import java.util.Collection; 
    1011import java.util.LinkedList; 
    1112import java.util.List; 
     
    7172         * </p> 
    7273         */ 
    73         private List<List<WindowsEvent>> sequences; 
     74        private Collection<List<WindowsEvent>> sequences; 
    7475 
    7576        /** 
     
    127128         * @return collection of event sequences 
    128129         */ 
    129         public List<List<WindowsEvent>> getSequences() { 
     130        public Collection<List<WindowsEvent>> getSequences() { 
    130131                return sequences; 
    131132        } 
Note: See TracChangeset for help on using the changeset viewer.