LayoutStr$.java
4.99 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* scala.ScalaObject
*/
package com.adobe.forms.transformer.impl;
import scala.ScalaObject;
public final class LayoutStr$
implements ScalaObject {
public static final LayoutStr$ MODULE$;
private final String NodeType;
private final String LayoutModel;
private final String ExtentX;
private final String ExtentY;
private final String ExtentH;
private final String ExtentW;
private final String ExtentMinW;
private final String ExtentMaxW;
private final String ExtentActualW;
private final String ExtentMinH;
private final String ExtentMaxH;
private final String ExtentActualH;
private final String MarginTop;
private final String MarginRight;
private final String MarginBottom;
private final String MarginLeft;
private final String BorderTop;
private final String BorderRight;
private final String BorderBottom;
private final String BorderLeft;
private final String Colspan;
private final String Rowspan;
private final String Occurrences;
private final String OccurIndex;
private final String ColumnWidths;
private final String PageNumber;
private final String MinW;
private final String MinH;
private final String MaxH;
private final String MaxW;
private final String CaptionPlacement;
private final String XfaName;
private final String TextStyle;
private final String SubformLayout;
public static {
new com.adobe.forms.transformer.impl.LayoutStr$();
}
public String NodeType() {
return this.NodeType;
}
public String LayoutModel() {
return this.LayoutModel;
}
public String ExtentX() {
return this.ExtentX;
}
public String ExtentY() {
return this.ExtentY;
}
public String ExtentH() {
return this.ExtentH;
}
public String ExtentW() {
return this.ExtentW;
}
public String ExtentMinW() {
return this.ExtentMinW;
}
public String ExtentMaxW() {
return this.ExtentMaxW;
}
public String ExtentActualW() {
return this.ExtentActualW;
}
public String ExtentMinH() {
return this.ExtentMinH;
}
public String ExtentMaxH() {
return this.ExtentMaxH;
}
public String ExtentActualH() {
return this.ExtentActualH;
}
public String MarginTop() {
return this.MarginTop;
}
public String MarginRight() {
return this.MarginRight;
}
public String MarginBottom() {
return this.MarginBottom;
}
public String MarginLeft() {
return this.MarginLeft;
}
public String BorderTop() {
return this.BorderTop;
}
public String BorderRight() {
return this.BorderRight;
}
public String BorderBottom() {
return this.BorderBottom;
}
public String BorderLeft() {
return this.BorderLeft;
}
public String Colspan() {
return this.Colspan;
}
public String Rowspan() {
return this.Rowspan;
}
public String Occurrences() {
return this.Occurrences;
}
public String OccurIndex() {
return this.OccurIndex;
}
public String ColumnWidths() {
return this.ColumnWidths;
}
public String PageNumber() {
return this.PageNumber;
}
public String MinW() {
return this.MinW;
}
public String MinH() {
return this.MinH;
}
public String MaxH() {
return this.MaxH;
}
public String MaxW() {
return this.MaxW;
}
public String CaptionPlacement() {
return this.CaptionPlacement;
}
public String XfaName() {
return this.XfaName;
}
public String TextStyle() {
return this.TextStyle;
}
public String SubformLayout() {
return this.SubformLayout;
}
private LayoutStr$() {
MODULE$ = this;
this.NodeType = "t";
this.LayoutModel = "l";
this.ExtentX = "x";
this.ExtentY = "y";
this.ExtentH = "h";
this.ExtentW = "w";
this.ExtentMinW = "nw";
this.ExtentMaxW = "xw";
this.ExtentActualW = "aw";
this.ExtentMinH = "nh";
this.ExtentMaxH = "xh";
this.ExtentActualH = "ah";
this.MarginTop = "t";
this.MarginRight = "r";
this.MarginBottom = "b";
this.MarginLeft = "l";
this.BorderTop = "bt";
this.BorderRight = "br";
this.BorderBottom = "bb";
this.BorderLeft = "bl";
this.Colspan = "c";
this.Rowspan = "rs";
this.Occurrences = "o";
this.OccurIndex = "i";
this.ColumnWidths = "cw";
this.PageNumber = "pn";
this.MinW = "nW";
this.MinH = "nH";
this.MaxH = "xH";
this.MaxW = "xW";
this.CaptionPlacement = "p";
this.XfaName = "n";
this.TextStyle = "textstyle";
this.SubformLayout = "sl";
}
}