blob: 175d66238a8059bf177f5be6ab671bd3a510d1bc (
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
|
-- File: StepAP214_PresentedItemSelect.cdl
-- Created: Wed Mar 10 15:38:56 1999
-- Author: data exchange team
-- <det@androx.nnov.matra-dtv.fr>
---Copyright: Matra Datavision 1999
class PresentedItemSelect from StepAP214
inherits SelectType from StepData
uses
ProductDefinition from StepBasic,
ProductDefinitionRelationship from StepBasic
is
Create returns PresentedItemSelect;
---Purpose : Returns a PresentedItemSelect SelectType
CaseNum (me; ent : Transient) returns Integer;
---Purpose: Recognizes a PresentedItemSelect Kind Entity that is :
-- 1 -> ProductDefinition,
-- 2 -> ProductDefinitionRelationship,
-- 0 else
ProductDefinitionRelationship (me) returns any ProductDefinitionRelationship;
---Purpose : returns Value as a ProductDefinitionRelationship (Null if another type)
ProductDefinition (me) returns any ProductDefinition;
---Purpose : returns Value as a ProductDefinition (Null if another type)
end PresentedItemSelect;
|