// Copyright 2012 Georg-August-Universität Göttingen, Germany // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package de.ugoe.cs.autoquest.tasktrees.temporalrelation; import java.util.ArrayList; import java.util.List; import de.ugoe.cs.autoquest.tasktrees.treeifc.ITask; import de.ugoe.cs.autoquest.tasktrees.treeifc.ITaskInstance; /** *

* The rule application result describes the result of applying a {@link ITemporalRelationshipRule}. * It contains a {@link RuleApplicationStatus} and a list of all parent task instances and tasks * that were created during a rule application. See the description of * {@link ITemporalRelationshipRule} for more details. *

* * @author Patrick Harms */ class RuleApplicationResult { /** */ private RuleApplicationStatus status = RuleApplicationStatus.NOT_APPLIED; /** */ private List newParentTasks = new ArrayList(); /** */ private List newParentInstances = new ArrayList(); /** *

* create a rule application result with a status {@link RuleApplicationStatus#RULE_NOT_APPLIED} *

*/ RuleApplicationResult() { // this is the default indicating nothing so far } /** *

* set the rule application status *

*/ void setRuleApplicationStatus(RuleApplicationStatus status) { this.status = status; } /** *

* return the rule application status *

*/ RuleApplicationStatus getRuleApplicationStatus() { return status; } /** *

* add a further parent task created during the rule application *

*/ void addNewlyCreatedTask(ITask newParent) { newParentTasks.add(newParent); } /** *

* return all parent tasks created during the rule application *

*/ List getNewlyCreatedTasks() { return newParentTasks; } /** *

* add a further parent task instance created during the rule application *

*/ void addNewlyCreatedTaskInstance(ITaskInstance newParent) { newParentInstances.add(newParent); } /** *

* return all parent task instances created during the rule application *

*/ List getNewlyCreatedTaskInstances() { return newParentInstances; } }