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

Last change on this file since 922 was 922, checked in by sherbold, 12 years ago
  • renaming of packages from de.ugoe.cs.quest to de.ugoe.cs.autoquest
File size: 422 bytes
Line 
1package de.ugoe.cs.autoquest.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.