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

    r1146 r1154  
    9393 
    9494    /** 
     95     * <p> 
     96     * compares two tasks with each other checking for the provided required level of 
     97     * equality. One of the tasks must be an iteration, the other one not. If this is not the 
     98     * case, the method returns null. The returned equality level is at most lexical equality 
     99     * as the iteration can not be identical to something not being an iteration. 
     100     * </p> 
    95101     *  
     102     * @param task1                 the first task to be compared 
     103     * @param task2                 the second task to be compared 
     104     * @param requiredEqualityLevel the equality level to be checked for 
     105     *  
     106     * @return the determined equality. 
    96107     */ 
    97108    private TaskEquality getEquality(ITask task1, ITask task2, TaskEquality requiredEqualityLevel) { 
     
    144155    /** 
    145156     * <p> 
    146      * TODO: comment 
    147      * </p> 
    148      * 
    149      * @param child1 
    150      * @param child2 
    151      * @param requiredEqualityLevel 
    152      * @return 
     157     * used to to call the task equality rule manager for the comparison of the two provided 
     158     * children. If no required equality level is provided, than the most concrete equality is 
     159     * returned. Otherwise, the required equality is returned as long as the children are equal 
     160     * on that level. 
     161     * </p>  
     162     *  
     163     * @param child1                the first task to be compared 
     164     * @param child2                the second task to be compared 
     165     * @param requiredEqualityLevel the equality level to be checked for 
     166     *  
     167     * @return the determined equality 
    153168     */ 
    154169    private TaskEquality callRuleManager(ITask        child1, 
Note: See TracChangeset for help on using the changeset viewer.