Uses of Interface
ucot.parser.ParserInterface

Packages that use ParserInterface
ucot.core   
ucot.input   
ucot.parser   
ucot.ui.gui   
ucot.ui.gui.tree.usecasetree   
 

Uses of ParserInterface in ucot.core
 

Fields in ucot.core declared as ParserInterface
private  ParserInterface Core.currentParser
           
 

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

Methods in ucot.core that return ParserInterface
 ParserInterface Core.getCurrentParser()
           
 ParserInterface ControlInterface.getCurrentParser()
          returns the current default parser
 

Methods in ucot.core that return types with arguments of type ParserInterface
 java.util.Vector<ParserInterface> Core.getParsers()
           
 java.util.Vector<ParserInterface> ControlInterface.getParsers()
          Returns a vector of parsers that are available
 

Methods in ucot.core with parameters of type ParserInterface
 void Core.addToAnalyzeModel(UseCase usecase, ParserInterface parser)
           
 void ControlInterface.addToAnalyzeModel(UseCase usecase, ParserInterface parser)
          Requests core to parse use case, perform heuristic on it and add it to given analyze model
 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.setCurrentParser(ParserInterface parser)
           
 void ControlInterface.setCurrentParser(ParserInterface parser)
          Sets the default parser to use.
 

Uses of ParserInterface in ucot.input
 

Fields in ucot.input declared as ParserInterface
private  ParserInterface UseCase.parser
          Which parserInterface was used on this usecase
 

Methods in ucot.input that return ParserInterface
 ParserInterface UseCase.getParser()
          Get the parser that was used on this usecase
 

Methods in ucot.input with parameters of type ParserInterface
 void UseCase.setParser(ParserInterface parser)
          Set the parser that was used to parse this usecase
 

Uses of ParserInterface in ucot.parser
 

Classes in ucot.parser that implement ParserInterface
 class SimpleInputParser
           
 class StanfordAdapter
          Parser that uses Stanford parser to parse te sentence.
 

Uses of ParserInterface in ucot.ui.gui
 

Fields in ucot.ui.gui declared as ParserInterface
private  ParserInterface AddToModelWithDialog.selectedParser
           
 

Methods in ucot.ui.gui that return ParserInterface
 ParserInterface AddToModelWithDialog.getSelectedParser()
           
 

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

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