source: trunk/quest-core-tasktrees/src/main/java/de/ugoe/cs/quest/tasktrees/nodeequality/NodeComparisonRule.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.3 KB
Line 
1//-------------------------------------------------------------------------------------------------
2// Module    : $RCSfile: EqualityRule.java,v $
3// Version   : $Revision: 0.0 $  $Author: patrick $  $Date: 19.02.2012 $
4// Project   : TaskTreeCreator
5// Creation  : 2012 by patrick
6// Copyright : Patrick Harms, 2012
7//-------------------------------------------------------------------------------------------------
8package de.ugoe.cs.quest.tasktrees.nodeequality;
9
10import de.ugoe.cs.quest.tasktrees.treeifc.TaskTreeNode;
11
12//-------------------------------------------------------------------------------------------------
13/**
14 * TODO comment
15 *
16 * @version $Revision: $ $Date: 19.02.2012$
17 * @author 2012, last modified by $Author: patrick$
18 */
19//-------------------------------------------------------------------------------------------------
20public interface NodeComparisonRule
21{
22
23  //-----------------------------------------------------------------------------------------------
24  /**
25   * compares two nodes with each other. The result of the method is either a node equality or
26   * null. If it is null, it means, that the rule is not able to correctly compare the two
27   * given nodes
28   */
29  //-----------------------------------------------------------------------------------------------
30  public NodeEquality compare(TaskTreeNode node1, TaskTreeNode node2);
31 
32}
Note: See TracBrowser for help on using the repository browser.