Ignore:
Timestamp:
09/10/12 17:31:34 (12 years ago)
Author:
pharms
Message:
  • added support for more fine grained iteration detection with distinction of the different levels of GUI design, i.e. lexical, syntactical and semantical.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-core-tasktrees/src/main/java/de/ugoe/cs/quest/tasktrees/temporalrelation/TemporalRelationshipRuleManager.java

    r799 r805  
    55import java.util.logging.Level; 
    66 
     7import de.ugoe.cs.quest.tasktrees.nodeequality.NodeEquality; 
    78import de.ugoe.cs.quest.tasktrees.nodeequality.NodeEqualityRuleManager; 
    89import de.ugoe.cs.quest.tasktrees.treeifc.ITaskTreeBuilder; 
     
    4344        ruleIndex.add(new TrackBarSelectionDetectionRule(nodeEqualityRuleManager)); 
    4445        ruleIndex.add(new DefaultGuiEventSequenceDetectionRule()); 
    45         ruleIndex.add(new DefaultIterationDetectionRule(nodeEqualityRuleManager)); 
     46         
     47        ruleIndex.add(new DefaultIterationDetectionRule 
     48                          (nodeEqualityRuleManager, NodeEquality.LEXICALLY_EQUAL)); 
     49        ruleIndex.add(new DefaultIterationDetectionRule 
     50                          (nodeEqualityRuleManager, NodeEquality.SYNTACTICALLY_EQUAL)); 
     51        ruleIndex.add(new DefaultIterationDetectionRule 
     52                          (nodeEqualityRuleManager, NodeEquality.SEMANTICALLY_EQUAL)); 
    4653    } 
    4754 
Note: See TracChangeset for help on using the changeset viewer.