blob: 04f27aa86dbf48a28ce23e1eedac533121305bd4 (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
-- File: Dynamic_Node.cdl
-- Created: Mon Sep 19 11:18:30 1994
-- Author: Gilles DEBARBOUILLE
-- <gde@watson>
---Copyright: Matra Datavision 1994
generic class Node from Dynamic (Item as Transient)
---Purpose: This generic class is a light way to store a
-- persistent homogeneous collection of objects
-- inside another persistent object.
inherits
TShared from MMgt
is
Create returns mutable Node from Dynamic;
---Level: Advanced
---Purpose: Returns an empty instance of this class.
Create(anitem : any Item) returns mutable Node from Dynamic;
---Level: Advanced
---Purpose: Returns an instance of this class initialized with
-- <anitem> as object.
Object(me : mutable ; anitem : any Item)
---Level: Advanced
---Purpose: Sets to <me> the object <anitem>.
is static;
Object(me) returns any Item
---Level: Advanced
---Purpose: Returns the object into <me>.
is static;
Next(me : mutable ; anode : Node from Dynamic)
---Level: Advanced
---Purpose: Links to <me> the node <anode>.
is static;
Next(me) returns any Node from Dynamic
---Level: Advanced
---Purpose: Returns the node linked to <me>.
is static;
fields
thenextnode : Node from Dynamic;
theitem : Item;
end Node;
|