Ignore:
Timestamp:
07/26/13 09:20:36 (11 years ago)
Author:
pharms
Message:
  • added some Java Docs
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/commands/CMDcompressHTMLLogFiles.java

    r1230 r1276  
    2525/** 
    2626 * <p> 
    27  * TODO comment 
     27 * This command performs a compression of HTML log files. It traverse a directory structure. All 
     28 * files in the same directory are treated as HTML log files. They are parsed and all GUI elements 
     29 * and events contained in them are dumped into a new log file. No GUI element is dumped more than 
     30 * once. Through this, several log files containing duplicates of GUI elements are condensed to  
     31 * only one. The events are put at the end of the new log file and are sorted based on their time 
     32 * stamp.  
    2833 * </p> 
    2934 *  
     
    3338public class CMDcompressHTMLLogFiles implements Command { 
    3439 
    35     /* 
    36      * (non-Javadoc) 
    37      *  
     40    /* (non-Javadoc) 
    3841     * @see de.ugoe.cs.util.console.Command#run(java.util.List) 
    3942     */ 
     
    6063 
    6164    /** 
     65     * <p> 
     66     * convenience method for recursively calling the {@link HTMLLogCompressor} for each directory 
     67     * </p> 
    6268     *  
     69     * @param the directory to be traversed 
    6370     */ 
    6471    private void compressDirectory(File directory) { 
     
    8188    } 
    8289 
    83     /* 
    84      * (non-Javadoc) 
    85      *  
     90    /* (non-Javadoc) 
    8691     * @see de.ugoe.cs.util.console.Command#help() 
    8792     */ 
Note: See TracChangeset for help on using the changeset viewer.