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/CMDpseudomizeHTMLTextInputs.java

    r1242 r1276  
    2424/** 
    2525 * <p> 
    26  * TODO comment 
     26 * replaces all text inputs in a directory structure with MD5 hashes of the text input. If the 
     27 * text input is already hashed, it stays unchanged. For this, the command traverses the directory 
     28 * structure. In each directory it treats the contained files as HTML log files. It parses them, 
     29 * copies all GUI elements and events and replaces the entered text of text input events. The result 
     30 * is a copy of each treated log file. The origins are deleted. The copies are named as the origins. 
    2731 * </p> 
    2832 *  
     
    3236public class CMDpseudomizeHTMLTextInputs implements Command { 
    3337 
    34     /* 
    35      * (non-Javadoc) 
    36      *  
     38    /* (non-Javadoc) 
    3739     * @see de.ugoe.cs.util.console.Command#run(java.util.List) 
    3840     */ 
     
    5961 
    6062    /** 
     63     * <p> 
     64     * convenience method to traverse the directory structure 
     65     * </p> 
    6166     *  
     67     * @param directory the directory to be treated next 
    6268     */ 
    6369    private void pseudomizeTextInputsInDirectory(File directory) { 
Note: See TracChangeset for help on using the changeset viewer.