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/RuleApplicationResult.java

    r1733 r1734  
    2222import de.ugoe.cs.autoquest.tasktrees.treeifc.ITaskInstance; 
    2323 
     24// TODO: Auto-generated Javadoc 
    2425/** 
    2526 * <p> 
     
    3536class RuleApplicationResult implements Serializable { 
    3637 
    37         /** 
    38          *  
    39          */ 
     38        /** The Constant serialVersionUID. */ 
    4039        private static final long serialVersionUID = -5927099713841481328L; 
    4140 
    42         /** */ 
     41        /** The status. */ 
    4342        private RuleApplicationStatus status = RuleApplicationStatus.NOT_APPLIED; 
    4443 
    45         /** */ 
     44        /** The new parent tasks. */ 
    4645        private final List<ITask> newParentTasks = new ArrayList<ITask>(); 
    4746 
    48         /** */ 
     47        /** The new parent instances. */ 
    4948        private final List<ITaskInstance> newParentInstances = new ArrayList<ITaskInstance>(); 
    5049 
     
    5352         * create a rule application result with a status 
    5453         * {@link RuleApplicationStatus#RULE_NOT_APPLIED} 
    55          * </p> 
     54         * </p>. 
    5655         */ 
    5756        RuleApplicationResult() { 
     
    6261         * <p> 
    6362         * add a further parent task created during the rule application 
    64          * </p> 
     63         * </p>. 
     64         * 
     65         * @param newParent the new parent 
    6566         */ 
    6667        void addNewlyCreatedTask(ITask newParent) { 
     
    7172         * <p> 
    7273         * add a further parent task instance created during the rule application 
    73          * </p> 
     74         * </p>. 
     75         * 
     76         * @param newParent the new parent 
    7477         */ 
    7578        void addNewlyCreatedTaskInstance(ITaskInstance newParent) { 
     
    8083         * <p> 
    8184         * return all parent task instances created during the rule application 
    82          * </p> 
     85         * </p>. 
     86         * 
     87         * @return the newly created task instances 
    8388         */ 
    8489        List<ITaskInstance> getNewlyCreatedTaskInstances() { 
     
    8994         * <p> 
    9095         * return all parent tasks created during the rule application 
    91          * </p> 
     96         * </p>. 
     97         * 
     98         * @return the newly created tasks 
    9299         */ 
    93100        List<ITask> getNewlyCreatedTasks() { 
     
    98105         * <p> 
    99106         * return the rule application status 
    100          * </p> 
     107         * </p>. 
     108         * 
     109         * @return the rule application status 
    101110         */ 
    102111        RuleApplicationStatus getRuleApplicationStatus() { 
     
    107116         * <p> 
    108117         * set the rule application status 
    109          * </p> 
     118         * </p>. 
     119         * 
     120         * @param status the new rule application status 
    110121         */ 
    111122        void setRuleApplicationStatus(RuleApplicationStatus status) { 
Note: See TracChangeset for help on using the changeset viewer.