TraditionalFrame.java
1023 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
50
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.xfa.text;
import com.adobe.xfa.text.TextFrame;
abstract class TraditionalFrame
extends TextFrame {
private int mnCombCells;
private boolean mbSuppressWordWrap;
void setCombCells(int nCombCells) {
this.mnCombCells = nCombCells;
}
void setSuppressWordWrap(boolean bNewSuppress) {
this.mbSuppressWordWrap = bNewSuppress;
}
void copyFrom(TraditionalFrame oSource) {
if (this != oSource) {
this.mnCombCells = oSource.mnCombCells;
this.mbSuppressWordWrap = oSource.mbSuppressWordWrap;
super.copyFrom(oSource);
}
}
@Override
public TextFrame cloneFrame() {
assert (false);
return null;
}
@Override
public int combCells() {
return this.mnCombCells;
}
@Override
boolean allowExtension() {
return true;
}
@Override
boolean suppressWordWrap() {
return this.mbSuppressWordWrap;
}
}