source: trunk/quest-core-tasktrees/src/main/java/de/ugoe/cs/quest/tasktrees/temporalrelation/RuleApplicationStatus.java @ 809

Last change on this file since 809 was 809, checked in by pharms, 12 years ago
  • added some java doc for the classes, which are expected to be quite final
File size: 418 bytes
Line 
1package de.ugoe.cs.quest.tasktrees.temporalrelation;
2
3/**
4 * <p>
5 * The rule application status describes the result of applying a {@link TemporalRelationshipRule}
6 * on a task tree node. See the description of {@link TemporalRelationshipRule} for more details.
7 * </p>
8 *
9 * @author Patrick Harms
10 */
11enum RuleApplicationStatus {
12    RULE_APPLICATION_FINISHED,
13    RULE_APPLICATION_FEASIBLE,
14    RULE_NOT_APPLIED;
15}
Note: See TracBrowser for help on using the repository browser.