blob: 69fadadc51da831f722cc98891a845a8e60de65e (
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
|
-- File: PresentationStyleAssignment.cdl
-- Created: Fri Dec 1 11:11:25 1995
-- Author: EXPRESS->CDL V0.2 Translator
-- Copyright: Matra-Datavision 1993
class PresentationStyleAssignment from StepVisual
inherits TShared from MMgt
uses
HArray1OfPresentationStyleSelect from StepVisual,
PresentationStyleSelect from StepVisual
is
Create returns mutable PresentationStyleAssignment;
---Purpose: Returns a PresentationStyleAssignment
Init (me : mutable;
aStyles : mutable HArray1OfPresentationStyleSelect from StepVisual) is virtual;
-- Specific Methods for Field Data Access --
SetStyles(me : mutable; aStyles : mutable HArray1OfPresentationStyleSelect);
Styles (me) returns mutable HArray1OfPresentationStyleSelect;
StylesValue (me; num : Integer) returns PresentationStyleSelect;
NbStyles (me) returns Integer;
fields
styles : HArray1OfPresentationStyleSelect from StepVisual; -- a SelectType
end PresentationStyleAssignment;
|