Ignore:
Timestamp:
04/25/13 16:59:20 (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/ITaskInstanceList.java

    r1146 r1177  
    1919/** 
    2020 * <p> 
    21  * TODO comment 
     21 * represents a serializable, clonable, iterable representation of a read only list of task 
     22 * instances. The list is ordered. It does not provide methods for changing it. 
    2223 * </p> 
    2324 *  
     
    2728 
    2829    /** 
    29      * 
     30     * <p> 
     31     * returns the task instance at the position with the given index. May throw an exception 
     32     * if the index is invalid. 
     33     * </p> 
     34     *  
     35     * @param index the index of the task instance to be returned 
     36     *  
     37     * @return the task instance at the given index 
    3038     */ 
    3139    public ITaskInstance get(int index); 
    3240 
    3341    /** 
    34      * 
     42     * <p> 
     43     * returns the size of the list, i.e. the number of task instances in the list 
     44     * </p> 
     45     *  
     46     * @return as described 
    3547     */ 
    3648    public int size(); 
    3749 
    3850    /** 
    39      * 
     51     * <p> 
     52     * clones a task instance list by creating exact clones of each contained instance in their 
     53     * order 
     54     * </p> 
     55     *  
     56     * @return a clone of the task instance list 
    4057     */ 
    4158    public ITaskInstanceList clone(); 
Note: See TracChangeset for help on using the changeset viewer.