Ignore:
Timestamp:
04/29/13 12:31:22 (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/treeifc/IStructuringTemporalRelationship.java

    r1146 r1180  
    1919/** 
    2020 * <p> 
    21  * TODO comment 
     21 * A structuring temporal relationship defines a temporal information for several nodes in the task 
     22 * model. I.e., it has several children and defines an execution order for them. 
    2223 * </p> 
    2324 *  
     
    2728 
    2829    /** 
    29      * 
     30     * <p> 
     31     * returns the children of this temporal relationship. 
     32     * </p> 
     33     *  
     34     * @return as described 
    3035     */ 
    3136    public List<ITask> getChildren(); 
    3237 
    3338    /** 
    34      * 
     39     * <p> 
     40     * returns an exact copy of this temporal relationship. The clone has the same id. Its children 
     41     * are clones of the children of the cloned task. A call on the method {@link #equals(ITask)} 
     42     * with the result of this method must return true. 
     43     * </p> 
     44     *  
     45     * @return as described 
    3546     */ 
    3647    public IStructuringTemporalRelationship clone(); 
Note: See TracChangeset for help on using the changeset viewer.