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

Last change on this file since 439 was 439, checked in by pharms, 12 years ago

initial import after refactoring of module structure with Steffen

  • Property svn:executable set to *
File size: 1.6 KB
Line 
1//-------------------------------------------------------------------------------------------------
2// Module    : $RCSfile: TemporalRelationshipRule.java,v $
3// Version   : $Revision: 0.0 $  $Author: patrick $  $Date: 12.02.2012 $
4// Project   : TaskTreeCreator
5// Creation  : 2012 by patrick
6// Copyright : Patrick Harms, 2012
7//-------------------------------------------------------------------------------------------------
8package de.ugoe.cs.quest.tasktrees.temporalrelation;
9
10import de.ugoe.cs.quest.tasktrees.treeifc.TaskTreeBuilder;
11import de.ugoe.cs.quest.tasktrees.treeifc.TaskTreeNode;
12import de.ugoe.cs.quest.tasktrees.treeifc.TaskTreeNodeFactory;
13
14//-------------------------------------------------------------------------------------------------
15/**
16 * TODO comment
17 *
18 * @version $Revision: $ $Date: 12.02.2012$
19 * @author 2012, last modified by $Author: patrick$
20 */
21//-------------------------------------------------------------------------------------------------
22public interface TemporalRelationshipRule
23{
24
25  //-----------------------------------------------------------------------------------------------
26  /**
27   * applies the rule to the given situation and returns a rule application result, if this was
28   * successful
29   */
30  //-----------------------------------------------------------------------------------------------
31  public RuleApplicationResult apply(TaskTreeNode        parent,
32                                     TaskTreeBuilder     builder,
33                                     TaskTreeNodeFactory nodeFactory,
34                                     boolean             finalize);
35 
36}
Note: See TracBrowser for help on using the repository browser.