blob: a6e3ddef0ae2ba4af18610d228ab07e4fe4d2387 (
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
|
-- File: FileDescription.cdl
-- Created: Thu Jun 16 18:05:54 1994
-- Author: EXPRESS->CDL V0.2 Translator
-- Copyright: Matra-Datavision 1993
class FileDescription from HeaderSection
inherits TShared from MMgt
uses
HArray1OfHAsciiString from Interface,
HAsciiString from TCollection
is
Create returns mutable FileDescription;
---Purpose: Returns a FileDescription
Init (me : mutable;
aDescription : mutable HArray1OfHAsciiString from Interface;
aImplementationLevel : mutable HAsciiString from TCollection);
-- Specific Methods for Field Data Access --
SetDescription(me : mutable; aDescription : mutable HArray1OfHAsciiString);
Description (me) returns mutable HArray1OfHAsciiString;
DescriptionValue (me; num : Integer) returns mutable HAsciiString;
NbDescription (me) returns Integer;
SetImplementationLevel(me : mutable; aImplementationLevel : mutable HAsciiString);
ImplementationLevel (me) returns mutable HAsciiString;
fields
description : HArray1OfHAsciiString from Interface;
implementationLevel : HAsciiString from TCollection;
end FileDescription;
|