forked from erichVK5/BXL2text
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFootprintElementArchetype.java
More file actions
49 lines (39 loc) · 945 Bytes
/
Copy pathFootprintElementArchetype.java
File metadata and controls
49 lines (39 loc) · 945 Bytes
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
public class FootprintElementArchetype
{
long xOffsetNm = 0;
long yOffsetNm = 0;
public long Xposition()
{
return xOffsetNm;
}
public long Yposition()
{
return yOffsetNm;
}
public void FootprintElementArchetype()
{
xOffsetNm = 0;
yOffsetNm = 0;
}
public void FootprintElementArchetype(long x, long y)
{
xOffsetNm = x;
yOffsetNm = y;
}
public String toString()
{
return("x: " + xOffsetNm + ", y: " + yOffsetNm);
}
public String generateGEDAelement(long xOffset, long yOffset, float magnificationRatio)
{
return "";
}
public void populateElement(String moduleDefinition, boolean metric)
{
System.out.println("You're not supposed to see this.");
}
public void populateElement(String moduleDefinition, boolean metric, long minimumViaDrillSize)
{
System.out.println("You're not supposed to see this.");
}
}