Uses of Interface
ucot.input.InputInterface

Packages that use InputInterface
ucot.input   
 

Uses of InputInterface in ucot.input
 

Classes in ucot.input that implement InputInterface
 class DummyInput
          DummyInput which does absolutely nothing but helps avoiding null values in input variables.
 class ProcessMlInputAdapter
          This InputInterface reads ProcessMl-files and parses usecases from them.
 class SimpleInputAdapter
          Reads usecases that are stored in this format: [name] Name of the usecase is here [id] Id of the usecase (must be unique within file, it is discarded after loading) [steps] Steps separated with linebreak.
 

Fields in ucot.input with type parameters of type InputInterface
private  java.util.Vector<InputInterface> InputCollection.inputs
           
 

Methods in ucot.input that return InputInterface
 InputInterface InputCollection.getInput(int index)
          Returns handler by its index
 InputInterface InputCollection.getInputForUrl(java.net.URL url)
          Returns input that can read file on given url
 

Methods in ucot.input with parameters of type InputInterface
 void InputCollection.add(InputInterface inf)
          Adds given input handler to the collection.