Ignore:
Timestamp:
05/27/13 15:24:09 (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/treeimpl/MarkingTemporalRelationship.java

    r1146 r1215  
    2020/** 
    2121 * <p> 
    22  * TODO comment 
     22 * this is the default implementation of the interface {@link IMarkingTemporalRelationship}. It 
     23 * does not do anything fancy except implementing the interface. 
    2324 * </p> 
    2425 *  
     
    2930{ 
    3031 
    31     /**  */ 
     32    /** 
     33     * <p> 
     34     * default serial version UID 
     35     * </p> 
     36     */ 
    3237    private static final long serialVersionUID = 1L; 
    3338 
    3439    /** 
    35      *  
     40     * <p> 
     41     * the task marked through this marking temporal relationship 
     42     * </p> 
    3643     */ 
    3744    private ITask markedTask; 
    3845     
    3946    /** 
    40      *  
     47     * <p> 
     48     * a human readable name for this temporal relationship 
     49     * </p> 
    4150     */ 
    4251    private String relationshipType; 
     
    4453    /** 
    4554     * <p> 
    46      * TODO: comment 
     55     * initializes this temporal relationship with a human readable name 
    4756     * </p> 
    4857     * 
    49      * @param description 
     58     * @param relationshipType the human readable name of this temporal relationship 
    5059     */ 
    5160    MarkingTemporalRelationship(String relationshipType) { 
     
    8392 
    8493    /** 
    85      * @param markedTask the markedTask to set 
     94     * <p> 
     95     * used to set the marked task 
     96     * </p> 
     97     *  
     98     * @param markedTask the marked task to set 
    8699     */ 
    87100    protected void setMarkedTask(ITask markedTask) { 
Note: See TracChangeset for help on using the changeset viewer.