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

Last change on this file since 655 was 655, checked in by pharms, 12 years ago
  • removed old copyright file header
  • Property svn:executable set to *
File size: 807 bytes
Line 
1package de.ugoe.cs.quest.tasktrees.temporalrelation;
2
3import de.ugoe.cs.quest.tasktrees.treeifc.ITaskTreeBuilder;
4import de.ugoe.cs.quest.tasktrees.treeifc.ITaskTreeNode;
5import de.ugoe.cs.quest.tasktrees.treeifc.ITaskTreeNodeFactory;
6
7/**
8 * TODO comment
9 *
10 * @version $Revision: $ $Date: 12.02.2012$
11 * @author 2012, last modified by $Author: patrick$
12 */
13public interface TemporalRelationshipRule {
14
15  /**
16   * applies the rule to the given situation and returns a rule application result, if this was
17   * successful
18   */
19  public RuleApplicationResult apply(ITaskTreeNode        parent,
20                                     ITaskTreeBuilder     builder,
21                                     ITaskTreeNodeFactory nodeFactory,
22                                     boolean              finalize);
23 
24}
Note: See TracBrowser for help on using the repository browser.