TextEmbed.java
1.7 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.xfa.text;
import com.adobe.xfa.gfx.GFXEnv;
import com.adobe.xfa.text.DispEmbed;
import com.adobe.xfa.text.TextContext;
import com.adobe.xfa.text.TextGfxSource;
import com.adobe.xfa.text.TextPosn;
import com.adobe.xfa.text.TextStream;
import com.adobe.xfa.ut.UnitSpan;
public abstract class TextEmbed {
public static final int EMBED_AT_BASELINE = 0;
public static final int EMBED_AT_TOP = 1;
public static final int EMBED_AT_BOTTOM = 2;
private TextPosn moPosition = null;
private DispEmbed mpoDispEmbed = null;
public TextEmbed() {
}
public TextEmbed(TextEmbed oSource) {
}
public void update(boolean bEraseBkgnd) {
}
public TextContext getContext() {
return this.moPosition.stream() == null ? null : this.moPosition.stream().getContext();
}
public TextPosn position() {
return this.moPosition;
}
public void copyFrom(TextEmbed oSource) {
}
public abstract boolean isEqual(TextEmbed var1);
public abstract UnitSpan width();
public abstract UnitSpan height();
public boolean enforceHeight() {
return false;
}
public abstract TextEmbed cloneEmbed();
public abstract void gfxDraw(GFXEnv var1);
public void gfxSource(TextGfxSource oGfxSource) {
}
public int embedAt() {
return 0;
}
void position(TextPosn oNewPosition) {
this.moPosition = oNewPosition == null ? null : new TextPosn(oNewPosition);
}
public void setLegacyLevel(int eLevel) {
}
DispEmbed getDispEmbed() {
return this.mpoDispEmbed;
}
void setDispEmbed(DispEmbed poWrapper) {
this.mpoDispEmbed = poWrapper;
}
}