blob: 702fff724c0bf4bd4d2b6dde3e2fef8ddeb80e36 (
plain)
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
|
-- File: Dynamic_FuzzyDefinition.cdl
-- Created: Fri Jan 22 11:41:34 1993
-- Author: Gilles DEBARBOUILLE
-- <gde@bravox>
---Copyright: Matra Datavision 1993
class FuzzyDefinition from Dynamic
inherits
FuzzyClass from Dynamic
---Purpose: It is the class useful for setting a particular
-- definition of an object. This definition is
-- caracterized by a collection of parameters. Each
-- parameter is identified by its name, the type of
-- its referenced value and if necessary a default
-- value.
uses
OStream from Standard,
CString from Standard,
HAsciiString from TCollection,
AsciiString from TCollection
is
Create(aname : CString from Standard) returns mutable FuzzyDefinition from Dynamic;
---Level: Public
---Purpose: Creates a FuzzyDefinition with <aname> as type.
Type(me) returns AsciiString from TCollection
---Level: Public
---Purpose: Returns the type of object.
is redefined;
Dump(me ; astream : in out OStream from Standard)
---Level: Internal
---Purpose: Useful for debugging.
is redefined;
fields
thename : HAsciiString from TCollection;
end FuzzyDefinition;
|