Changeset 297 for trunk/EventBenchConsole/src
- Timestamp:
- 12/13/11 11:43:24 (13 years ago)
- Location:
- trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows
- Files:
-
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows/MFCLogParser.java
r263 r297 42 42 * @version 1.0 43 43 */ 44 public class LogParser extends DefaultHandler {44 public class MFCLogParser extends DefaultHandler { 45 45 46 46 /** … … 61 61 /** 62 62 * <p> 63 * {@link SequenceSplitter} instance used by the {@link LogParser}.63 * {@link SequenceSplitter} instance used by the {@link MFCLogParser}. 64 64 * </p> 65 65 */ … … 96 96 * </p> 97 97 */ 98 public LogParser() {98 public MFCLogParser() { 99 99 this(false); 100 100 } … … 109 109 * counted. 110 110 */ 111 public LogParser(boolean countMessageOccurences) {111 public MFCLogParser(boolean countMessageOccurences) { 112 112 sequenceSplitter = new SequenceSplitter(); 113 113 sequences = new LinkedList<List<WindowsEvent>>(); … … 217 217 /** 218 218 * <p> 219 * Parses a given log file and adds its contents to the collection of event220 * sequences.219 * Parses a given log file created by the MFCMonitor and adds its contents 220 * to the collection of event sequences. 221 221 * </p> 222 222 * -
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows/MessageHandler.java
r171 r297 25 25 /** 26 26 * <p> 27 * Called in the startElement() method of the {@link LogParser} when a27 * Called in the startElement() method of the {@link MFCLogParser} when a 28 28 * msg-node begins. 29 29 * </p> … … 34 34 /** 35 35 * <p> 36 * Called by the {@link LogParser} to handle param-nodes.36 * Called by the {@link MFCLogParser} to handle param-nodes. 37 37 * </p> 38 38 * … … 47 47 /** 48 48 * <p> 49 * Called in the endElement() method of {@link LogParser} when a msg-node49 * Called in the endElement() method of {@link MFCLogParser} when a msg-node 50 50 * ends. 51 51 * </p> -
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows/SequenceSplitter.java
r198 r297 74 74 /** 75 75 * <p> 76 * Called by the {@link LogParser} every time a message is parsed.76 * Called by the {@link MFCLogParser} every time a message is parsed. 77 77 * </p> 78 78 * -
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows/commands/CMDparseXML.java
r240 r297 8 8 import de.ugoe.cs.eventbench.CommandHelpers; 9 9 import de.ugoe.cs.eventbench.data.GlobalDataContainer; 10 import de.ugoe.cs.eventbench.windows. LogParser;10 import de.ugoe.cs.eventbench.windows.MFCLogParser; 11 11 import de.ugoe.cs.eventbench.windows.data.WindowTree; 12 12 import de.ugoe.cs.eventbench.windows.data.WindowsEvent; … … 59 59 } 60 60 61 LogParser parser = newLogParser(countMessageOccurences);61 MFCLogParser parser = new MFCLogParser(countMessageOccurences); 62 62 parser.parseFile(filename); 63 63
Note: See TracChangeset
for help on using the changeset viewer.