Changeset 297


Ignore:
Timestamp:
12/13/11 11:43:24 (12 years ago)
Author:
sherbold
Message:
  • renamed de.ugoe.cs.eventbench.windows.LogParser? to MFCLogParser
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  
    4242 * @version 1.0 
    4343 */ 
    44 public class LogParser extends DefaultHandler { 
     44public class MFCLogParser extends DefaultHandler { 
    4545 
    4646        /** 
     
    6161        /** 
    6262         * <p> 
    63          * {@link SequenceSplitter} instance used by the {@link LogParser}. 
     63         * {@link SequenceSplitter} instance used by the {@link MFCLogParser}. 
    6464         * </p> 
    6565         */ 
     
    9696         * </p> 
    9797         */ 
    98         public LogParser() { 
     98        public MFCLogParser() { 
    9999                this(false); 
    100100        } 
     
    109109         *            counted. 
    110110         */ 
    111         public LogParser(boolean countMessageOccurences) { 
     111        public MFCLogParser(boolean countMessageOccurences) { 
    112112                sequenceSplitter = new SequenceSplitter(); 
    113113                sequences = new LinkedList<List<WindowsEvent>>(); 
     
    217217        /** 
    218218         * <p> 
    219          * Parses a given log file and adds its contents to the collection of event 
    220          * sequences. 
     219         * Parses a given log file created by the MFCMonitor and adds its contents 
     220         * to the collection of event sequences. 
    221221         * </p> 
    222222         *  
  • trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows/MessageHandler.java

    r171 r297  
    2525        /** 
    2626         * <p> 
    27          * Called in the startElement() method of the {@link LogParser} when a 
     27         * Called in the startElement() method of the {@link MFCLogParser} when a 
    2828         * msg-node begins. 
    2929         * </p> 
     
    3434        /** 
    3535         * <p> 
    36          * Called by the {@link LogParser} to handle param-nodes. 
     36         * Called by the {@link MFCLogParser} to handle param-nodes. 
    3737         * </p> 
    3838         *  
     
    4747        /** 
    4848         * <p> 
    49          * Called in the endElement() method of {@link LogParser} when a msg-node 
     49         * Called in the endElement() method of {@link MFCLogParser} when a msg-node 
    5050         * ends. 
    5151         * </p> 
  • trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows/SequenceSplitter.java

    r198 r297  
    7474        /** 
    7575         * <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. 
    7777         * </p> 
    7878         *  
  • trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows/commands/CMDparseXML.java

    r240 r297  
    88import de.ugoe.cs.eventbench.CommandHelpers; 
    99import de.ugoe.cs.eventbench.data.GlobalDataContainer; 
    10 import de.ugoe.cs.eventbench.windows.LogParser; 
     10import de.ugoe.cs.eventbench.windows.MFCLogParser; 
    1111import de.ugoe.cs.eventbench.windows.data.WindowTree; 
    1212import de.ugoe.cs.eventbench.windows.data.WindowsEvent; 
     
    5959                } 
    6060 
    61                 LogParser parser = new LogParser(countMessageOccurences); 
     61                MFCLogParser parser = new MFCLogParser(countMessageOccurences); 
    6262                parser.parseFile(filename); 
    6363 
Note: See TracChangeset for help on using the changeset viewer.