Ignore:
Timestamp:
05/04/18 15:46:03 (6 years ago)
Author:
pharms
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/temporalrelation/utils/TaskTreeValidator.java

    r1852 r2258  
    3838/** 
    3939 * <p> 
    40  * TODO comment 
     40 * Convenience class to validate if certain restrictions to task trees and task tree instances 
     41 * apply. Restrictions are, e.g., that for every task there need to be instances or that for every 
     42 * sequence instance the children match the corresponding sequence model. This class is vor test and 
     43 * evaluation purposes only. 
    4144 * </p> 
    4245 *  
     
    300303    /** 
    301304     * <p> 
    302      * TODO: comment 
    303      * </p> 
    304      * 
    305      * @param string 
     305     * convenience method to log throw issues found during the evaluation  
     306     * </p> 
    306307     */ 
    307308    private void fail(ITask task, String message) { 
     
    315316    /** 
    316317     * <p> 
    317      * TODO: comment 
    318      * </p> 
    319      * 
    320      * @param string 
    321      * @param task 
     318     * convenience method to log throw issues found during the evaluation  
     319     * </p> 
    322320     */ 
    323321    private void assertNotNull(ITask task, String message, Object object) { 
     
    333331    /** 
    334332     * <p> 
    335      * TODO: comment 
    336      * </p> 
    337      * 
    338      * @param string 
    339      * @param found 
     333     * convenience method to log throw issues found during the evaluation  
     334     * </p> 
    340335     */ 
    341336    private void assertTrue(ITask task, String message, boolean value) { 
     
    351346    /** 
    352347     * <p> 
    353      * TODO: comment 
    354      * </p> 
    355      * 
    356      * @param string 
    357      * @param found 
     348     * convenience method to log throw issues found during the evaluation  
     349     * </p> 
    358350     */ 
    359351    private void assertFalse(ITask task, String message, boolean value) { 
     
    369361    /** 
    370362     * <p> 
    371      * TODO: comment 
    372      * </p> 
    373      * 
    374      * @param string 
    375      * @param childTask 
    376      * @param task 
     363     * convenience method to log throw issues found during the evaluation  
     364     * </p> 
    377365     */ 
    378366    private void assertEquals(ITask task, String message, Object object1, Object object2) { 
     
    388376    /** 
    389377     * <p> 
    390      * TODO: comment 
    391      * </p> 
    392      * 
    393      * @param string 
    394      * @param childTask 
    395      * @param task 
     378     * convenience method to log throw issues found during the evaluation  
     379     * </p> 
    396380     */ 
    397381    private void assertSame(ITask task, String message, Object object1, Object object2) { 
Note: See TracChangeset for help on using the changeset viewer.