Uses of Class
ucot.model.relation.Item

Packages that use Item
ucot.model.relation   
 

Uses of Item in ucot.model.relation
 

Subclasses of Item in ucot.model.relation
 class Entity
          Entity represents candidate for object or actor (like user) in the analyze model.
 class Method
          Method marks some possible action that Entity can do.
 

Fields in ucot.model.relation with type parameters of type Item
private  java.util.Set<Item> RelationalAnalyzeModel.items
           
 

Methods in ucot.model.relation that return Item
 Item RelationalAnalyzeModel.getItemByName(java.lang.String name)
          Returns spesific item by its name.
 

Methods in ucot.model.relation that return types with arguments of type Item
 java.util.Set<Item> RelationalAnalyzeModel.getItemsType(java.lang.String typeName)
          Returns items which type name is equal to given type name.
 

Methods in ucot.model.relation with parameters of type Item
protected  void RelationalAnalyzeModel.addItem(Item e)
          Adds item in to the model
protected  void RelationalAnalyzeModel.removeItem(Item item)
          Removes item from the model.
 void Relation.setFrom(Item from)
           
 void Relation.setTo(Item to)