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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
|
-- File: Dynamic_FuzzyClass.cdl
-- Created: Fri Jan 22 11:41:34 1993
-- Author: Gilles DEBARBOUILLE
-- <gde@bravox>
---Copyright: Matra Datavision 1993
deferred class FuzzyClass from Dynamic
inherits
TShared from MMgt
---Purpose: This class is the root class to dynamically define
-- objects of a given type but with various
-- definitions. This root class contains a parameter
-- list which describes in the definition context all
-- the useful information and in the instance context
-- only the redefined values. This class is deferred
-- because no instance has to be created.
uses
CString from Standard,
Integer from Standard,
Real from Standard,
Boolean from Standard,
OStream from Standard,
Parameter from Dynamic,
ParameterNode from Dynamic,
AsciiString from TCollection
is
Initialize;
---Level: Internal
---Purpose: Creates a FuzzyClass.
Type(me) returns AsciiString from TCollection
---Level: Public
---Purpose: This deferred method must returns the type of the
-- object. If the instance is of the type FuzzyDefinition
-- the method simply returns the field <thetype>. If the
-- instance is of the type FuzzyInstance the method calls
-- the Type method on the true definition.
is deferred;
FirstParameter(me) returns ParameterNode from Dynamic
---Level: Public
---Purpose: Returns the head of the list of parameters. For the
-- FuzzyDefinition class this method returns the head of
-- the exaustive list of parameters defining the object
-- and for the FuzzyInstance it just returns the head of
-- the overloaded values.
is static;
Parameter(me ; aparameter : CString from Standard) returns Boolean from Standard
---Level: Public
---Purpose: Returns true if there is a parameter with <aparameter>
-- as name, false otherwise.
is static;
Parameter(me : mutable ; aparameter : any Parameter from Dynamic)
---Level: Public
---Purpose: Adds another parameter <aparameter> to the sequence of
-- parameters.
is static;
Parameter(me : mutable ; aparameter : CString from Standard; avalue : Boolean from Standard)
---Level: Public
---Purpose: Adds to the instance <me> the parameter <aparameter>
-- with the boolean value <avalue>.
is virtual;
Parameter(me : mutable ; aparameter : CString from Standard; avalue : Integer from Standard)
---Level: Public
---Purpose: Adds to the instance <me> the parameter <aparameter>
-- with the integer value <avalue>.
is virtual;
Parameter(me : mutable ; aparameter : CString from Standard; avalue : Real from Standard)
---Level: Public
---Purpose: Adds to the instance <me> the parameter <aparameter>
-- with the real value <avalue>.
is virtual;
Parameter(me : mutable ; aparameter : CString from Standard; astring : CString from Standard)
---Level: Public
---Purpose: Adds to the instance <me> the parameter <aparameter>
-- with the string <astring>.
is virtual;
Parameter(me : mutable ; aparameter : CString from Standard; anobject : any Transient)
---Level: Public
---Purpose: Adds to the instance <me> the parameter <aparameter>
-- with the object value <anobject>.
is virtual;
Value(me ; aparameter : CString from Standard;
avalue : out Boolean from Standard) returns Boolean from Standard
---Level: Public
---Purpose: Returns True, if there is a parameter <aparameter>
-- previously stored in the instance <me> and there is
-- the corresponding boolean value in the output argument
-- <avalue>, False otherwise.
is virtual;
Value(me ; aparameter : CString from Standard;
avalue : out Integer from Standard)
returns Boolean from Standard
---Level: Public
---Purpose: Returns True, if there is a parameter <aparameter>
-- previously stored in the instance <me> and there is
-- the corresponding integer value in the output argument
-- <avalue>, False otherwise.
is virtual;
Value(me ; aparameter : CString from Standard;
avalue : out Real)
returns Boolean from Standard
---Level: Public
---Purpose: Returns True, if there is a parameter <aparameter>
-- previously stored in the instance <me> and there is
-- the corresponding real value in the output argument
-- <avalue>, False otherwise.
is virtual;
Value(me ; aparameter : CString from Standard; avalue : out AsciiString from TCollection)
returns Boolean from Standard
---Level: Public
---Purpose: Returns True, if there is a parameter <aparameter>
-- previously stored in the instance <me> and there is
-- the corresponding string in the output argument
-- <avalue>, False otherwise.
is virtual;
Value(me ; aparameter : CString from Standard; avalue : out any Transient)
returns Boolean from Standard
---Level: Public
---Purpose: Returns True, if there is a parameter <aparameter>
-- previously stored in the instance <me> and there is
-- the corresponding object value in the output argument
-- <avalue>, False otherwise.
is virtual;
Dump(me ; astream : in out OStream from Standard)
---Level: Internal
---Purpose: Useful for debugging.
is virtual;
fields
thefirstparameternode : ParameterNode from Dynamic;
end FuzzyClass;
|