File tree 3 files changed +63
-33
lines changed
3 files changed +63
-33
lines changed Original file line number Diff line number Diff line change
1
+ Trait {
2
+ #name : #FamixTWithAnnotationInstanceAttributes ,
3
+ #instVars : [
4
+ ' #attributes => FMMany type: #FamixTAnnotationInstanceAttribute opposite: #parentAnnotationInstance'
5
+ ],
6
+ #category : #' Famix-Deprecated'
7
+ }
8
+
9
+ { #category : #accessing }
10
+ FamixTWithAnnotationInstanceAttributes >> addAttribute: anAttribute [
11
+ attributes add: anAttribute
12
+ ]
13
+
14
+ { #category : #accessing }
15
+ FamixTWithAnnotationInstanceAttributes >> attributes [
16
+ " Relation named: #attributes type: #FamixTAnnotationInstanceAttribute opposite: #parentAnnotationInstance"
17
+
18
+ < generated>
19
+ < FMComment: ' This corresponds to the actual values of the attributes in an AnnotationInstance' >
20
+ < derived>
21
+ ^ attributes
22
+ ]
23
+
24
+ { #category : #accessing }
25
+ FamixTWithAnnotationInstanceAttributes >> attributes: anObject [
26
+
27
+ < generated>
28
+ attributes value: anObject
29
+ ]
Original file line number Diff line number Diff line change
1
+ Extension { #name : #FamixTWithImports }
2
+
3
+ { #category : #' *Famix-Deprecated' }
4
+ FamixTWithImports >> addOutgoingImport: anObject [
5
+
6
+ self
7
+ deprecated: ' Use #addImport:'
8
+ transformWith:
9
+ ' `@receiver addOutgoingImport: `@argument' - > ' `@receiver addImport: `@argument' .
10
+
11
+ ^ self addImport: anObject
12
+ ]
13
+
14
+ { #category : #' *Famix-Deprecated' }
15
+ FamixTWithImports >> outgoingImports [
16
+
17
+ self
18
+ deprecated: ' Use #imports'
19
+ transformWith:
20
+ ' `@receiver outgoingImports' - > ' `@receiver imports' .
21
+
22
+ ^ self imports
23
+ ]
24
+
25
+ { #category : #' *Famix-Deprecated' }
26
+ FamixTWithImports >> outgoingImports: anObject [
27
+
28
+ self
29
+ deprecated: ' Use #imports:'
30
+ transformWith:
31
+ ' `@receiver outgoingImports: `@argument' - > ' `@receiver imports: `@argument' .
32
+
33
+ ^ self imports: anObject
34
+ ]
Original file line number Diff line number Diff line change @@ -33,17 +33,6 @@ FamixTWithImports >> addImport: anObject [
33
33
^ self imports add: anObject
34
34
]
35
35
36
- { #category : #' as yet unclassified' }
37
- FamixTWithImports >> addOutgoingImport: anObject [
38
-
39
- self
40
- deprecated: ' Use #addImport:'
41
- transformWith:
42
- ' `@receiver addOutgoingImport: `@argument' - > ' `@receiver addImport: `@argument' .
43
-
44
- ^ self addImport: anObject
45
- ]
46
-
47
36
{ #category : #accessing }
48
37
FamixTWithImports >> imports [
49
38
" Relation named: #imports type: #FamixTImport opposite: #importingEntity"
@@ -59,25 +48,3 @@ FamixTWithImports >> imports: anObject [
59
48
< generated>
60
49
imports value: anObject
61
50
]
62
-
63
- { #category : #' as yet unclassified' }
64
- FamixTWithImports >> outgoingImports [
65
-
66
- self
67
- deprecated: ' Use #imports'
68
- transformWith:
69
- ' `@receiver outgoingImports' - > ' `@receiver imports' .
70
-
71
- ^ self imports
72
- ]
73
-
74
- { #category : #' as yet unclassified' }
75
- FamixTWithImports >> outgoingImports: anObject [
76
-
77
- self
78
- deprecated: ' Use #imports:'
79
- transformWith:
80
- ' `@receiver outgoingImports: `@argument' - > ' `@receiver imports: `@argument' .
81
-
82
- ^ self imports: anObject
83
- ]
You can’t perform that action at this time.
0 commit comments