-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFASTPyDecorator.class.st
More file actions
70 lines (54 loc) · 1.56 KB
/
FASTPyDecorator.class.st
File metadata and controls
70 lines (54 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
"
I represent a decorator in Python. I can be applied to class, function or method definition using the `@` symbol.
## Relations
======================
### Parents
| Relation | Origin | Opposite | Type | Comment |
|---|
| `parentDefinition` | `FASTPyDecorator` | `decorators` | `FASTPyTDefinition` | |
### Children
| Relation | Origin | Opposite | Type | Comment |
|---|
| `expression` | `FASTPyDecorator` | `parentDeclarator` | `FASTPyTDecoratorExpression` | |
"
Class {
#name : 'FASTPyDecorator',
#superclass : 'FASTPyEntity',
#instVars : [
'#expression => FMOne type: #FASTPyTDecoratorExpression opposite: #parentDeclarator',
'#parentDefinition => FMOne type: #FASTPyTDefinition opposite: #decorators'
],
#category : 'FAST-Python-Model-Entities',
#package : 'FAST-Python-Model',
#tag : 'Entities'
}
{ #category : 'meta' }
FASTPyDecorator class >> annotation [
<FMClass: #Decorator super: #FASTPyEntity>
<package: #'FAST-Python-Model'>
<generated>
^ self
]
{ #category : 'accessing' }
FASTPyDecorator >> expression [
"Relation named: #expression type: #FASTPyTDecoratorExpression opposite: #parentDeclarator"
<generated>
^ expression
]
{ #category : 'accessing' }
FASTPyDecorator >> expression: anObject [
<generated>
expression := anObject
]
{ #category : 'accessing' }
FASTPyDecorator >> parentDefinition [
"Relation named: #parentDefinition type: #FASTPyTDefinition opposite: #decorators"
<generated>
<container>
^ parentDefinition
]
{ #category : 'accessing' }
FASTPyDecorator >> parentDefinition: anObject [
<generated>
parentDefinition := anObject
]