Ignore:
Timestamp:
02/07/14 18:08:10 (10 years ago)
Author:
pharms
Message:
  • improved logging
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/treeimpl/MarkingTemporalRelationship.java

    r1215 r1357  
    4646    /** 
    4747     * <p> 
    48      * a human readable name for this temporal relationship 
    49      * </p> 
    50      */ 
    51     private String relationshipType; 
    52      
    53     /** 
    54      * <p> 
    5548     * initializes this temporal relationship with a human readable name 
    5649     * </p> 
     
    5952     */ 
    6053    MarkingTemporalRelationship(String relationshipType) { 
     54        super(relationshipType); 
     55         
    6156        if ((relationshipType == null) || ("".equals(relationshipType))) { 
    6257            throw new IllegalArgumentException 
    6358                ("the relationship type must be something meaningful"); 
    6459        } 
    65          
    66         this.relationshipType = relationshipType; 
    67         super.setDescription(this.relationshipType); 
    6860    } 
    6961 
     
    10193        this.markedTask = markedTask; 
    10294         
    103         super.setDescription(relationshipType + " of " + markedTask); 
     95        super.setDescription(markedTask.toString()); 
    10496    } 
    10597 
Note: See TracChangeset for help on using the changeset viewer.