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
RevLine 
[922]1package de.ugoe.cs.autoquest.tasktrees.temporalrelation;
[439]2
3/**
[809]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>
[439]8 *
[809]9 * @author Patrick Harms
[439]10 */
[809]11enum RuleApplicationStatus {
[557]12    RULE_APPLICATION_FINISHED,
13    RULE_APPLICATION_FEASIBLE,
14    RULE_NOT_APPLIED;
[439]15}
Note: See TracBrowser for help on using the repository browser.