Changeset 1734 for branches/autoquest-core-tasktrees-alignment/src/main/java/de/ugoe/cs/autoquest/tasktrees/temporalrelation/TaskSymbolIdentityMap.java
- Timestamp:
- 09/05/14 20:20:29 (11 years ago)
- 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 23 23 import de.ugoe.cs.autoquest.usageprofiles.SymbolMap; 24 24 25 // TODO: Auto-generated Javadoc 25 26 /** 26 27 * <p> 27 28 * symbol map implementation for task instances considering two task instances 28 29 * as equal if their tasks are identical 29 * </p> 30 * 30 * </p>. 31 * 31 32 * @author Patrick Harms 33 * @param <V> the value type 32 34 */ 33 35 public class TaskSymbolIdentityMap<V> implements SymbolMap<ITaskInstance, V> { 34 36 35 /** */37 /** The Constant serialVersionUID. */ 36 38 private static final long serialVersionUID = 1L; 37 39 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>. */ 43 41 private final Map<ITask, V> delegate; 44 42 … … 54 52 * <p> 55 53 * initializes this map 56 * </p> 54 * </p>. 57 55 */ 58 56 public TaskSymbolIdentityMap() { … … 64 62 * <p> 65 63 * copy constructor 66 * </p> 64 * </p>. 67 65 * 68 * @param other 69 * the map to be copied 66 * @param other the map to be copied 70 67 */ 71 68 public TaskSymbolIdentityMap(SymbolMap<ITaskInstance, V> other) {
Note: See TracChangeset
for help on using the changeset viewer.