blob: c609b7ffaf32dd0a927a0eff6576fd521814f638 (
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
|
-- File: AutoDesignDateAndTimeItem.cdl
-- Created: Tue Mar 9 15:29:30 1999
-- Author: data exchange team
-- <det@androx.nnov.matra-dtv.fr>
---Copyright: Matra Datavision 1999
class PersonAndOrganizationItem from StepAP214 inherits ApprovalItem from StepAP214
-- <PersonAndOrganizationItem> is an EXPRESS Select Type construct translation.
-- it gathers : ApprovalPersonOrganization, AutoDesignDateAndPersonAssignment
uses
AppliedOrganizationAssignment from StepAP214
is
Create returns PersonAndOrganizationItem;
---Purpose : Returns a PersonAndOrganizationItem SelectType
CaseNum (me; ent : Transient) returns Integer is redefined;
---Purpose: Recognizes a APersonAndOrganizationItem Kind Entity that is :
-- 1 -> AppliedOrganizationAssignment
-- 2 -> AssemblyComponentUsageSubstitute
-- 3 -> DocumentFile
-- 4 -> MaterialDesignation
-- 5 -> MechanicalDesignGeometricPresentationRepresentation
-- 6 -> PresentationArea
-- 7 -> Product
-- 8 -> ProductDefinition
-- 9 -> ProductDefinitionFormation
-- 10 -> ProductDefinitionRelationship
-- 11 -> PropertyDefinition
-- 12 -> ShapeRepresentation
-- 13 -> SecurityClassification
-- 0 else
AppliedOrganizationAssignment (me) returns any AppliedOrganizationAssignment;
---Purpose : returns Value as a AppliedOrganizationAssignment (Null if another type)
end PersonAndOrganizationItem;
|