Ignore:
Timestamp:
09/05/14 20:20:29 (10 years ago)
Author:
rkrimmel
Message:

Added automatically created javadoc, still needs to be commented properly though

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/autoquest-core-tasktrees-alignment/src/main/java/de/ugoe/cs/autoquest/tasktrees/temporalrelation/TaskSymbolIdentityMap.java

    r1733 r1734  
    2323import de.ugoe.cs.autoquest.usageprofiles.SymbolMap; 
    2424 
     25// TODO: Auto-generated Javadoc 
    2526/** 
    2627 * <p> 
    2728 * symbol map implementation for task instances considering two task instances 
    2829 * as equal if their tasks are identical 
    29  * </p> 
    30  *  
     30 * </p>. 
     31 * 
    3132 * @author Patrick Harms 
     33 * @param <V> the value type 
    3234 */ 
    3335public class TaskSymbolIdentityMap<V> implements SymbolMap<ITaskInstance, V> { 
    3436 
    35         /** */ 
     37        /** The Constant serialVersionUID. */ 
    3638        private static final long serialVersionUID = 1L; 
    3739 
    38         /** 
    39          * <p> 
    40          * internally used map for implementing the symbol map interface 
    41          * </p> 
    42          */ 
     40        /** <p> internally used map for implementing the symbol map interface </p>. */ 
    4341        private final Map<ITask, V> delegate; 
    4442 
     
    5452         * <p> 
    5553         * initializes this map 
    56          * </p> 
     54         * </p>. 
    5755         */ 
    5856        public TaskSymbolIdentityMap() { 
     
    6462         * <p> 
    6563         * copy constructor 
    66          * </p> 
     64         * </p>. 
    6765         * 
    68          * @param other 
    69          *            the map to be copied 
     66         * @param other            the map to be copied 
    7067         */ 
    7168        public TaskSymbolIdentityMap(SymbolMap<ITaskInstance, V> other) { 
Note: See TracChangeset for help on using the changeset viewer.