blob: 91e4895986dfaff96e72d04648bd98f5cc1d6f4a (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
--
-- File : DrilledHole.cdl
-- Created : Mon 11 Jan 1993
-- Author : CKY / Contract Toubro-Larsen ( Arun MENON )
--
---Copyright : MATRA-DATAVISION 1993
--
class DrilledHole from IGESAppli inherits IGESEntity
---Purpose: defines DrilledHole, Type <406> Form <6>
-- in package IGESAppli
-- Identifies an entity representing a drilled hole
-- through a printed circuit board.
uses Integer, Real -- no one specific type
is
Create returns mutable DrilledHole;
-- Specific Methods pertaining to the class
Init (me : mutable;
nbPropVal : Integer;
aSize : Real;
anotherSize : Real;
aPlating : Integer;
aLayer : Integer;
anotherLayer : Integer);
---Purpose : This method is used to set the fields of the class
-- DrilledHole
-- - nbPropVal : Number of property values = 5
-- - aSize : Drill diameter size
-- - anotherSize : Finish diameter size
-- - aPlating : Plating indication flag
-- False = not plating
-- True = is plating
-- - aLayer : Lower numbered layer
-- - anotherLayer : Higher numbered layer
NbPropertyValues (me) returns Integer;
---Purpose : is always 5
DrillDiaSize (me) returns Real;
---Purpose : returns the drill diameter size
FinishDiaSize (me) returns Real;
---Purpose : returns the finish diameter size
IsPlating (me) returns Boolean;
---Purpose : Returns Plating Status :
-- False = not plating / True = is plating
NbLowerLayer (me) returns Integer;
---Purpose : returns the lower numbered layer
NbHigherLayer (me) returns Integer;
---Purpose : returns the higher numbered layer
fields
--
-- Class : IGESAppli_DrilledHole
--
-- Purpose : Declaration of variables specific to the definition
-- of the Class DrilledHole.
--
-- Reminder : A DrilledHole instance is defined by :
-- - Number of property values (equal to 5)
-- - Drill diameter size
-- - Finish diameter size
-- - Plating indication flag
-- - Lower numbered layer
-- - Higher numbered layer
theNbPropertyValues : Integer;
theDrillDiaSize : Real;
theFinishDiaSize : Real;
thePlatingFlag : Integer;
theNbLowerLayer : Integer;
theNbHigherLayer : Integer;
end DrilledHole;
|