Changeset 203 for trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows
- Timestamp:
- 09/27/11 20:09:17 (13 years ago)
- Location:
- trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows/LogParser.java
r198 r203 8 8 import java.io.UnsupportedEncodingException; 9 9 import java.security.InvalidParameterException; 10 import java.util.Collection; 10 11 import java.util.LinkedList; 11 12 import java.util.List; … … 71 72 * </p> 72 73 */ 73 private List<List<WindowsEvent>> sequences;74 private Collection<List<WindowsEvent>> sequences; 74 75 75 76 /** … … 127 128 * @return collection of event sequences 128 129 */ 129 public List<List<WindowsEvent>> getSequences() {130 public Collection<List<WindowsEvent>> getSequences() { 130 131 return sequences; 131 132 } -
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows/commands/CMDparseXML.java
r198 r203 2 2 3 3 import java.security.InvalidParameterException; 4 import java.util.Collection; 4 5 import java.util.List; 5 6 … … 58 59 parser.parseFile(filename); 59 60 60 List<List<WindowsEvent>> sequences = parser.getSequences();61 Collection<List<WindowsEvent>> sequences = parser.getSequences(); 61 62 62 63 if (GlobalDataContainer.getInstance().addData(sequencesName, sequences)) {
Note: See TracChangeset
for help on using the changeset viewer.