TextMarkupBase.java
878 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
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.xfa.text;
import com.adobe.xfa.text.TextAttr;
import com.adobe.xfa.text.TextField;
import com.adobe.xfa.text.TextMarker;
public abstract class TextMarkupBase {
public abstract void text(String var1);
public abstract void attr(TextAttr var1);
public abstract void para();
public void field(TextField poField) {
}
public void openScopedBlock() {
}
public void closeScopedBlock() {
}
public boolean issueFirstPara() {
return false;
}
public boolean legacyPositioning() {
return false;
}
public void marker(TextMarker poMarker) {
}
public TextMarker markerStart(TextMarker poMarker) {
return null;
}
public void markerEnd(TextMarker poMarker) {
}
public TextAttr attributePtr() {
return null;
}
}