blob: 095acc94e6778b5f1b2e3ede8e460fd72c6677bc (
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
|
-- File: StepAP203_Change.cdl
-- Created: Fri Nov 26 16:26:35 1999
-- Author: Andrey BETENEV
-- Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.0
-- Copyright: Matra Datavision 1999
class Change from StepAP203
inherits ActionAssignment from StepBasic
---Purpose: Representation of STEP entity Change
uses
Action from StepBasic,
HArray1OfWorkItem from StepAP203
is
Create returns Change from StepAP203;
---Purpose: Empty constructor
Init (me: mutable; aActionAssignment_AssignedAction: Action from StepBasic;
aItems: HArray1OfWorkItem from StepAP203);
---Purpose: Initialize all fields (own and inherited)
Items (me) returns HArray1OfWorkItem from StepAP203;
---Purpose: Returns field Items
SetItems (me: mutable; Items: HArray1OfWorkItem from StepAP203);
---Purpose: Set field Items
fields
theItems: HArray1OfWorkItem from StepAP203;
end Change;
|