blob: 76a5509d2c83168f4e05f0c1f6feb97acbd9abae (
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
|
-- File: StepAP214_DateItem.cdl
-- Created: Tue Mar 9 16:48:58 1999
-- Author: data exchange team
-- <det@androx.nnov.matra-dtv.fr>
---Copyright: Matra Datavision 1999
class DateItem from StepAP214 inherits ApprovalItem from StepAP214
uses
ApprovalPersonOrganization from StepBasic,
AppliedPersonAndOrganizationAssignment from StepAP214,
AppliedOrganizationAssignment from StepAP214,
Effectivity from StepBasic
is
Create returns DateItem;
---Purpose : Returns a DateItem SelectType
CaseNum (me; ent : Transient) returns Integer is redefined;
---Purpose: Recognizes a DateItem Kind Entity that is :
-- 1 -> ApprovalPersonOrganization
-- 2 -> AppliedDateAndPersonAssignment
-- 3 -> AppliedOrganizationAssignment
-- 4 -> AssemblyComponentUsageSubstitute
-- 5 -> DocumentFile
-- 6 -> Effectivity
-- 7 -> MaterialDesignation
-- 8 -> MechanicalDesignGeometricPresentationRepresentation
-- 9 -> PresentationArea
-- 10 -> Product
-- 11 -> ProductDefinition
-- 12 -> ProductDefinitionFormation
-- 13 -> ProductDefinitionRelationship
-- 14 -> PropertyDefinition
-- 15 -> ShapeRepresentation
-- 0 else
ApprovalPersonOrganization (me) returns any ApprovalPersonOrganization ;
---Purpose : returns Value as a ApprovalPersonOrganization (Null if another type)
AppliedPersonAndOrganizationAssignment (me) returns any AppliedPersonAndOrganizationAssignment ;
---Purpose : returns Value as a AppliedDateAndPersonAssignment (Null if another type)
AppliedOrganizationAssignment (me) returns any AppliedOrganizationAssignment ;
---Purpose : returns Value as a AppliedOrganizationAssignment (Null if another type)
Effectivity (me) returns any Effectivity ;
---Purpose : returns Value as a Effectivity (Null if another type)
end DateItem;
|