Uses of Class
ucot.model.relation.Thing

Packages that use Thing
ucot.model   
ucot.model.relation   
ucot.output   
ucot.ui.gui.tree   
 

Uses of Thing in ucot.model
 

Fields in ucot.model declared as Thing
(package private)  Thing Updation.thing
           
 

Methods in ucot.model that return Thing
 Thing Updation.getThing()
           
 

Constructors in ucot.model with parameters of type Thing
Updation(Updation.UpdationType type, Thing thing)
           
 

Uses of Thing in ucot.model.relation
 

Subclasses of Thing in ucot.model.relation
 class Entity
          Entity represents candidate for object or actor (like user) in the analyze model.
 class Item
          Items are concrete parts of the AnalyzeModel, like entities, methods, attributes and stuff.
 class Method
          Method marks some possible action that Entity can do.
 class Relation
          Relation connects Thing in the model to other things.
 

Fields in ucot.model.relation declared as Thing
(package private)  Thing Relation.from
           
(package private)  Thing Relation.to
           
 

Methods in ucot.model.relation that return Thing
 Thing Relation.getFrom()
           
 Thing Relation.getTo()
           
 

Methods in ucot.model.relation with parameters of type Thing
private  void RelationalAnalyzeModel.extractEntities(Thing i)
          Extract entities from given thing.
 java.util.Set<Relation> RelationalAnalyzeModel.getRelationsFrom(Thing item)
          Returns relations that originates from given thing.
 java.util.Set<Relation> RelationalAnalyzeModel.getRelationsFrom(Thing thing1, Method method)
          Returns relations which mark method influence and originate from given thing.
 java.util.Set<Relation> RelationalAnalyzeModel.getRelationsFrom(Thing item, RelationType type)
          Returns relations that are certain type and are originated from given item.
 java.util.Set<Relation> RelationalAnalyzeModel.getRelationsFrom(Thing item, java.lang.String toType)
          Returns relations which point to thing of spesific type and are originated from given item.
 java.util.Set<Relation> RelationalAnalyzeModel.getRelationsTo(Thing item)
          Returns relations that point to given thing.
 java.util.Set<Relation> RelationalAnalyzeModel.getRelationsTo(Thing item, RelationType type)
          Returns relations that are certain type and targets given item.
 

Constructors in ucot.model.relation with parameters of type Thing
Relation(Thing from, RelationType type, Thing to)
           
Relation(Thing from, java.lang.String methodName, Thing to)
           
 

Uses of Thing in ucot.output
 

Methods in ucot.output with parameters of type Thing
private  java.lang.String Output.getStringFor(AnalyzeModel model, Thing i, java.lang.String preString, java.util.Set<Thing> handled)
          Creates string representation for given thing.
 

Method parameters in ucot.output with type arguments of type Thing
private  java.lang.String Output.getStringFor(AnalyzeModel model, Thing i, java.lang.String preString, java.util.Set<Thing> handled)
          Creates string representation for given thing.
 

Uses of Thing in ucot.ui.gui.tree
 

Methods in ucot.ui.gui.tree with parameters of type Thing
 java.util.List<TreeItem> TreeItem.getRelevants(Thing thing)
           
 java.util.List<TreeItem> MethodTreeItem.getRelevants(Thing thing)
           
 java.util.List<TreeItem> EntityTreeItem.getRelevants(Thing thing)