Ignore:
Timestamp:
04/29/13 13:56:31 (11 years ago)
Author:
pharms
Message:
  • improved java doc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/Trie.java

    r1118 r1186  
    324324     
    325325    /** 
    326      *  
     326     * <p> 
     327     * used to recursively process the trie. The provided processor will be called for any path 
     328     * through the tree. The processor may abort the processing through returns values of its 
     329     * {@link TrieProcessor#process(List, int)} method. 
     330     * </p> 
     331     *  
     332     * @param processor the processor to process the tree 
    327333     */ 
    328334    public void process(TrieProcessor<T> processor) { 
     
    338344    /** 
    339345     * <p> 
    340      * TODO: comment 
    341      * </p> 
    342      * @param context  
    343      * 
    344      * @param child 
    345      * @param processor 
     346     * processes a specific path by calling the provided processor. Furthermore, the method 
     347     * calls itself recursively for further subpaths. 
     348     * </p> 
     349     *  
     350     * @param context   the context of the currently processed trie node, i.e. the preceeding 
     351     *                  symbols 
     352     * @param child     the processed trie node 
     353     * @param processor the processor used for processing the trie 
     354     *  
     355     * @return true, if processing shall continue, false else 
    346356     */ 
    347357    private boolean process(LinkedList<T>    context, 
Note: See TracChangeset for help on using the changeset viewer.