GlyphExtra.java
1.02 KB
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
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.xfa.text;
class GlyphExtra {
private float moOffsetX;
private float moY;
private float moWidth;
private float moRTLWidth;
private int mnGroup;
GlyphExtra() {
}
float getOffsetX() {
return this.moOffsetX;
}
void setOffsetX(float oOffsetX) {
this.moOffsetX = oOffsetX;
}
float getY() {
return this.moY;
}
void setY(float oY) {
this.moY = oY;
}
float getWidth() {
return this.moWidth;
}
void setWidth(float oWidth) {
this.moWidth = oWidth;
}
float getRTLWidth() {
return this.moRTLWidth;
}
void setRTLWidth(float oRTLWidth) {
this.moRTLWidth = oRTLWidth;
}
int getGroup() {
return this.mnGroup;
}
void setGroup(int nGroup) {
this.mnGroup = nGroup;
}
void reset() {
this.moOffsetX = 0.0f;
this.moY = 0.0f;
this.moRTLWidth = 0.0f;
this.mnGroup = 0;
}
}