|
4 | 4 |
|
5 | 5 | ### Parents
|
6 | 6 | | Relation | Origin | Opposite | Type | Comment |
|
| 7 | +|---| |
7 | 8 | | `typeContainer` | `FamixTType` | `types` | `FamixTWithTypes` | Container entity to which this type belongs. Container is a namespace, not a package (Smalltalk).|
|
8 | 9 |
|
9 | 10 | ### Children
|
10 | 11 | | Relation | Origin | Opposite | Type | Comment |
|
| 12 | +|---| |
11 | 13 | | `attributes` | `FamixTWithAttributes` | `parentType` | `FamixTAttribute` | List of attributes declared by this type.|
|
12 | 14 | | `methods` | `FamixTWithMethods` | `parentType` | `FamixTMethod` | Methods declared by this type.|
|
13 | 15 | | `types` | `FamixTWithTypes` | `typeContainer` | `FamixTType` | Types contained (declared) in this entity, if any.
|
14 | 16 | #types is declared in ContainerEntity because different kinds of container can embed types. Types are usually contained in a Famix.Namespace. But types can also be contained in a Famix.Class or Famix.Method (in Java with inner classes for example). Famix.Function can also contain some types such as structs.|
|
15 | 17 |
|
16 | 18 | ### Outgoing dependencies
|
17 | 19 | | Relation | Origin | Opposite | Type | Comment |
|
| 20 | +|---| |
18 | 21 | | `interfaceImplementations` | `FamixTCanImplement` | `implementingClass` | `FamixTImplementation` | Implementation relationships|
|
19 | 22 | | `superInheritances` | `FamixTWithInheritances` | `subclass` | `FamixTInheritance` | Superinheritance relationships, i.e. known superclasses of this type.|
|
20 | 23 |
|
21 | 24 | ### Incoming dependencies
|
22 | 25 | | Relation | Origin | Opposite | Type | Comment |
|
| 26 | +|---| |
23 | 27 | | `incomingReferences` | `FamixTReferenceable` | `referredType` | `FamixTReference` | References to this entity by other entities.|
|
24 | 28 | | `subInheritances` | `FamixTWithInheritances` | `superclass` | `FamixTInheritance` | Subinheritance relationships, i.e. known subclasses of this type.|
|
25 | 29 |
|
26 | 30 | ### Other
|
27 | 31 | | Relation | Origin | Opposite | Type | Comment |
|
| 32 | +|---| |
28 | 33 | | `annotationInstances` | `FamixTWithAnnotationInstances` | `annotatedEntity` | `FamixTAnnotationInstance` | This property corresponds to the set of annotations associated to the entity|
|
29 | 34 | | `catchingEntities` | `FamixTThrowable` | `caughtExceptions` | `FamixTWithExceptions` | |
|
30 | 35 | | `comments` | `FamixTWithComments` | `commentedEntity` | `FamixTComment` | List of comments for the entity|
|
|
39 | 44 | ======================
|
40 | 45 |
|
41 | 46 | | Name | Type | Default value | Comment |
|
| 47 | +|---| |
42 | 48 | | `isStub` | `Boolean` | false | Flag true if the entity attributes are incomplete, either because the entity is missing or not imported.|
|
43 | 49 | | `name` | `String` | nil | Basic name of the entity, not full reference.|
|
44 | 50 | | `visibility` | `String` | nil | Visibility of the entity|
|
|
0 commit comments