Uses of Interface
ucot.heuristic.HeuristicInterface

Packages that use HeuristicInterface
ucot.core   
ucot.heuristic   
ucot.input   
ucot.ui.gui   
ucot.ui.gui.tree.usecasetree   
 

Uses of HeuristicInterface in ucot.core
 

Fields in ucot.core declared as HeuristicInterface
private  HeuristicInterface Core.currentHeuristic
           
 

Fields in ucot.core with type parameters of type HeuristicInterface
private  java.util.Vector<HeuristicInterface> Core.heuristics
           
 

Methods in ucot.core that return HeuristicInterface
 HeuristicInterface Core.getCurrentHeuristic()
           
 HeuristicInterface ControlInterface.getCurrentHeuristic()
          returns the current heuristic
 

Methods in ucot.core that return types with arguments of type HeuristicInterface
 java.util.Vector<HeuristicInterface> Core.getHeuristics()
           
 java.util.Vector<HeuristicInterface> ControlInterface.getHeuristics()
          Returns a list of heuristics that are available
 

Methods in ucot.core with parameters of type HeuristicInterface
 void Core.addToAnalyzeModel(UseCase usecase, ParserInterface parser, HeuristicInterface heuristic)
           
 void ControlInterface.addToAnalyzeModel(UseCase usecase, ParserInterface parser, HeuristicInterface heuristic)
          Requests core to parse use case, perform heuristic on it and add it to given analyze model
 void Core.setCurrentHeuristic(HeuristicInterface heuristic)
           
 void ControlInterface.setCurrentHeuristic(HeuristicInterface heuristic)
          Sets the default heuristic to use.
 

Uses of HeuristicInterface in ucot.heuristic
 

Classes in ucot.heuristic that implement HeuristicInterface
 class AbbottsHeuristic
          Abbotts Heuristic is a way to etsimated which parts of the speech are relevant and in which way when doing object analyze.
 

Uses of HeuristicInterface in ucot.input
 

Fields in ucot.input declared as HeuristicInterface
private  HeuristicInterface UseCase.heuristic
          Which heuristicInterface was used on this usecase
 

Methods in ucot.input that return HeuristicInterface
 HeuristicInterface UseCase.getHeuristic()
          Get the heuristic that was used on this usecase
 

Methods in ucot.input with parameters of type HeuristicInterface
 void UseCase.setHeuristic(HeuristicInterface heuristic)
          Set the heuristic that was used to this usecaes
 

Uses of HeuristicInterface in ucot.ui.gui
 

Fields in ucot.ui.gui declared as HeuristicInterface
private  HeuristicInterface AddToModelWithDialog.selectedHeuristic
           
 

Methods in ucot.ui.gui that return HeuristicInterface
 HeuristicInterface AddToModelWithDialog.getSelectedHeuristic()
           
 

Uses of HeuristicInterface in ucot.ui.gui.tree.usecasetree
 

Methods in ucot.ui.gui.tree.usecasetree with parameters of type HeuristicInterface
private  void UseCaseTree.addSubtreeToModel(FileTreeItem item, ParserInterface parser, HeuristicInterface heuristic)
           
private  void UseCaseTree.addSubtreeToModel(UseCaseTreeItem item, ParserInterface parser, HeuristicInterface heuristic)