Ignore:
Timestamp:
04/19/13 17:02:50 (11 years ago)
Author:
pharms
Message:
  • improved java doc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/taskequality/SequenceComparisonRule.java

    r1146 r1154  
    9393 
    9494    /** 
     95     * <p> 
     96     * compares two sequences with each other checking for the provided required level of 
     97     * equality. If this level is ensured, the method immediately returns. The more concrete 
     98     * the required equality level, the more checks this method performs. 
     99     * </p> 
    95100     *  
     101     * @param task1                 the first task to be compared 
     102     * @param task2                 the second task to be compared 
     103     * @param requiredEqualityLevel the equality level to be checked for 
     104     *  
     105     * @return the determined equality. 
    96106     */ 
    97107    private TaskEquality getEquality(ITask task1, ITask task2, TaskEquality requiredEqualityLevel) { 
     
    127137    /** 
    128138     * <p> 
    129      * TODO: comment 
    130      * </p> 
    131      * 
    132      * @param child1 
    133      * @param child2 
    134      * @param requiredEqualityLevel 
    135      * @return 
     139     * used to to call the task equality rule manager for the comparison of the two provided 
     140     * children. If no required equality level is provided, than the most concrete equality is 
     141     * returned. Otherwise, the required equality is returned as long as the children are equal 
     142     * on that level. 
     143     * </p>  
     144     *  
     145     * @param child1                the first task to be compared 
     146     * @param child2                the second task to be compared 
     147     * @param requiredEqualityLevel the equality level to be checked for 
     148     *  
     149     * @return the determined equality 
    136150     */ 
    137151    private TaskEquality callRuleManager(ITask        child1, 
Note: See TracChangeset for help on using the changeset viewer.