Uses of Class
ucot.input.UseCase

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

Uses of UseCase in ucot.core
 

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

Uses of UseCase in ucot.input
 

Fields in ucot.input declared as UseCase
private  UseCase UseCaseStep.subUseCase
          Sub usecase for this step
 

Fields in ucot.input with type parameters of type UseCase
private  java.util.Vector<UseCase> UseCaseCollection.useCases
           
 

Methods in ucot.input that return UseCase
 UseCase UseCaseCollection.find(java.lang.String id)
          Finds usecase that has the given id
 UseCase UseCaseStep.getSubUseCase()
          returns sub usecase
 UseCase UseCaseCollection.getUseCase(int index)
          Returns UseCase from index
 UseCase SimpleInputAdapter.readUseCase(java.io.BufferedReader reader, java.net.URL url)
          Reads a single usecase from given reader, sets it's url to given on
 

Methods in ucot.input that return types with arguments of type UseCase
 java.util.List<UseCase> UseCaseCollection.getUseCasesFromURL(java.net.URL url)
          Returns list of usecases from source described in url.
 

Methods in ucot.input with parameters of type UseCase
 void UseCase.addStep(java.lang.String step, UseCase subUseCase)
          Adds a new step to this usecase
 void UseCaseCollection.addUseCase(UseCase usecase)
          Add usecase to collection and notify observers
 boolean UseCaseCollection.exists(UseCase usecase)
          Checks if given UseCase exists in this collection
private  void UseCaseCollection.markAllUnanalyzed(UseCase usecase)
          Marks given usecase and it's sub usecases as unanalyzed
private  void ProcessMlInputAdapter.ParseInstanceDetails(org.w3c.dom.Element processInstance, UseCase usecase)
          Parses processInstance's id and adds it to usecase, also checks if this usecase is a subusecase
private  boolean ProcessMlInputAdapter.ParseSteps(UseCase usecase, org.w3c.dom.NodeList steps)
          Parses steps from given nodelist, stores them to given usecase
 void UseCaseStep.setSubUseCase(UseCase usecase)
          Sets sub usecase
 

Constructors in ucot.input with parameters of type UseCase
UseCaseStep(java.lang.String step, UseCase a)
           
 

Uses of UseCase in ucot.parser
 

Fields in ucot.parser declared as UseCase
private  UseCase ParsedData.usecase
          Usecase this ParsedData was created from
 

Methods in ucot.parser that return UseCase
 UseCase ParsedData.getUseCase()
          return the usecase that this parsedData was created from
 

Methods in ucot.parser with parameters of type UseCase
 ParsedData StanfordAdapter.parse(UseCase useCase)
           
 ParsedData SimpleInputParser.parse(UseCase usecase)
           
 ParsedData ParserInterface.parse(UseCase useCase)
          Parses given usecase and returns parsed data as a ParsedData object.
 void ParsedData.setUseCase(UseCase a)
           
 

Uses of UseCase in ucot.test
 

Fields in ucot.test declared as UseCase
(package private)  UseCase UseCaseTest.useCase
           
 

Uses of UseCase in ucot.ui
 

Methods in ucot.ui with parameters of type UseCase
 void UseCasePanelInterface.showUseCase(UseCase usecase)
          Give usecase to show.
 

Uses of UseCase in ucot.ui.gui
 

Fields in ucot.ui.gui declared as UseCase
private  UseCase SimpleUseCasePanel.usecase
           
 

Methods in ucot.ui.gui with parameters of type UseCase
 void SimpleUseCasePanel.showUseCase(UseCase usecase)
          Sets the usecase for display.
 

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

Fields in ucot.ui.gui.tree.usecasetree declared as UseCase
private  UseCase UseCaseTreeItem.usecase
           
 

Methods in ucot.ui.gui.tree.usecasetree that return UseCase
 UseCase UseCaseTreeItem.getUseCase()
           
 

Constructors in ucot.ui.gui.tree.usecasetree with parameters of type UseCase
UseCaseTreeItem(UseCaseTreeModel treemodel, TreeItem parent, UseCase u)