TemplateSchema.java
81.2 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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.xfa.template;
import com.adobe.xfa.Attribute;
import com.adobe.xfa.ChildReln;
import com.adobe.xfa.Element;
import com.adobe.xfa.EnumAttr;
import com.adobe.xfa.EnumValue;
import com.adobe.xfa.GenericNode;
import com.adobe.xfa.GenericTextContainer;
import com.adobe.xfa.ImagingBBoxEnum;
import com.adobe.xfa.Int;
import com.adobe.xfa.Manifest;
import com.adobe.xfa.Measurement;
import com.adobe.xfa.Node;
import com.adobe.xfa.Proto;
import com.adobe.xfa.Schema;
import com.adobe.xfa.StringAttr;
import com.adobe.xfa.XFA;
import com.adobe.xfa.content.BooleanValue;
import com.adobe.xfa.content.DateTimeValue;
import com.adobe.xfa.content.DateValue;
import com.adobe.xfa.content.DecimalValue;
import com.adobe.xfa.content.ExDataValue;
import com.adobe.xfa.content.FloatValue;
import com.adobe.xfa.content.ImageValue;
import com.adobe.xfa.content.IntegerValue;
import com.adobe.xfa.content.RectangleValue;
import com.adobe.xfa.content.TextValue;
import com.adobe.xfa.content.TimeValue;
import com.adobe.xfa.svg.SVGSchema;
import com.adobe.xfa.template.Items;
import com.adobe.xfa.template.TemplateModel;
import com.adobe.xfa.template.Value;
import com.adobe.xfa.template.automation.Calculate;
import com.adobe.xfa.template.automation.EventTag;
import com.adobe.xfa.template.automation.Script;
import com.adobe.xfa.template.binding.Bind;
import com.adobe.xfa.template.binding.BindItems;
import com.adobe.xfa.template.binding.Connect;
import com.adobe.xfa.template.binding.SetProperty;
import com.adobe.xfa.template.containers.AreaContainer;
import com.adobe.xfa.template.containers.ContentArea;
import com.adobe.xfa.template.containers.Draw;
import com.adobe.xfa.template.containers.ExclGroup;
import com.adobe.xfa.template.containers.Field;
import com.adobe.xfa.template.containers.PageArea;
import com.adobe.xfa.template.containers.PageSet;
import com.adobe.xfa.template.containers.Rotate;
import com.adobe.xfa.template.containers.Subform;
import com.adobe.xfa.template.containers.SubformSet;
import com.adobe.xfa.template.containers.Variables;
import com.adobe.xfa.template.formatting.Border;
import com.adobe.xfa.template.formatting.Button;
import com.adobe.xfa.template.formatting.Caption;
import com.adobe.xfa.template.formatting.Color;
import com.adobe.xfa.template.formatting.Fill;
import com.adobe.xfa.template.formatting.Keep;
import com.adobe.xfa.template.formatting.Linear;
import com.adobe.xfa.template.formatting.Margin;
import com.adobe.xfa.template.formatting.Occur;
import com.adobe.xfa.template.formatting.Picture;
import com.adobe.xfa.template.sequencing.Traverse;
import com.adobe.xfa.template.ui.DateTimeEdit;
import com.adobe.xfa.template.ui.TextEdit;
import com.adobe.xfa.template.ui.UI;
public class TemplateSchema
extends Schema {
private final ChildReln moZeroOrMore2 = new ChildReln(2, 2);
private final ChildReln moZeroOrMore4 = new ChildReln(2, 4);
public TemplateSchema() {
super("http://www.xfa.org/schema/xfa-template/", XFA.XFA_ATTRIBUTE_MIN, XFA.XFA_ATTRIBUTE_MAX, XFA.XFA_ELEMENT_MIN, XFA.XFA_ELEMENT_MAX);
this.initSchema();
}
@Override
protected void initSchema() {
super.initSchema();
this.putPropAttrs(XFA.ASSISTTAG);
this.putAttribute(XFA.ASSISTTAG, XFA.ROLETAG, null, 22, 5, 0);
this.putElement(XFA.ASSISTTAG, XFA.SPEAKTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.ASSISTTAG, XFA.TOOLTIPTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putAttribute(XFA.BINDTAG, XFA.REFTAG, null, 21, 5, 0);
this.putAttribute(XFA.BINDTAG, EnumValue.getEnum(XFA.MATCHTAG, EnumAttr.getEnum(2031617)), 21, 5, 0);
this.putElement(XFA.BINDTAG, XFA.PICTURETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putAttribute(XFA.BINDITEMSTAG, XFA.REFTAG, null, 24, 5, 0);
this.putAttribute(XFA.BINDITEMSTAG, XFA.CONNECTIONTAG, null, 24, 5, 0);
this.putAttribute(XFA.BINDITEMSTAG, XFA.LABELREFTAG, null, 24, 5, 0);
this.putAttribute(XFA.BINDITEMSTAG, XFA.VALUEREFTAG, null, 24, 5, 0);
this.putAttribute(XFA.SETPROPERTYTAG, XFA.REFTAG, null, 24, 5, 0);
this.putAttribute(XFA.SETPROPERTYTAG, XFA.CONNECTIONTAG, null, 24, 5, 0);
this.putAttribute(XFA.SETPROPERTYTAG, XFA.TARGETTAG, null, 24, 5, 0);
this.putPropAttrs(XFA.BUTTONTAG);
this.putAttribute(XFA.BUTTONTAG, EnumValue.getEnum(XFA.HIGHLIGHTTAG, EnumAttr.getEnum(7798785)), 25, 8, 0);
this.putElement(XFA.BUTTONTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.DATETIMEEDITTAG);
this.putAttribute(XFA.DATETIMEEDITTAG, EnumValue.getEnum(XFA.HSCROLLPOLICYTAG, EnumAttr.getEnum(7536640)), 25, 8, 0);
this.putAttribute(XFA.DATETIMEEDITTAG, EnumValue.getEnum(XFA.PICKERTAG, EnumAttr.getEnum(8781825)), 28, 5, 0);
this.putElement(XFA.DATETIMEEDITTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.DATETIMEEDITTAG, XFA.BORDERTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.DATETIMEEDITTAG, XFA.MARGINTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.DATETIMEEDITTAG, XFA.COMBTAG, ChildReln.getZeroOrOne(), 25, 5, 0);
this.putPropAttrs(XFA.CERTIFICATESTAG);
this.putAttribute(XFA.CERTIFICATESTAG, XFA.URLTAG, null, 25, 8, 0);
this.putAttribute(XFA.CERTIFICATESTAG, XFA.URLPOLICYTAG, new StringAttr("urlPolicy", "enrollmentServer"), 25, 8, 0);
this.putAttribute(XFA.CERTIFICATESTAG, EnumValue.getEnum(XFA.CREDENTIALSERVERPOLICYTAG, EnumAttr.getEnum(9240577)), 25, 8, 0);
this.putElement(XFA.CERTIFICATESTAG, XFA.SIGNINGTAG, ChildReln.getZeroOrOne(), 25, 8, 0);
this.putElement(XFA.CERTIFICATESTAG, XFA.ISSUERSTAG, ChildReln.getZeroOrOne(), 25, 8, 0);
this.putElement(XFA.CERTIFICATESTAG, XFA.OIDSTAG, ChildReln.getZeroOrOne(), 25, 8, 0);
this.putElement(XFA.CERTIFICATESTAG, XFA.SUBJECTDNSTAG, ChildReln.getZeroOrOne(), 25, 8, 0);
this.putElement(XFA.CERTIFICATESTAG, XFA.KEYUSAGETAG, ChildReln.getZeroOrOne(), 25, 8, 0);
this.putChildAttrs(XFA.CERTIFICATETAG);
this.putElement(XFA.CERTIFICATETAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 24, 5, 0);
this.putPropAttrs(XFA.SUBJECTDNSTAG);
this.putAttribute(XFA.SUBJECTDNSTAG, EnumValue.getEnum(XFA.TYPETAG, EnumAttr.getEnum(-2140930047)), 25, 8, 0);
this.putElement(XFA.SUBJECTDNSTAG, XFA.SUBJECTDNTAG, ChildReln.getZeroOrMore(), 25, 8, 0);
this.putChildAttrs(XFA.SUBJECTDNTAG);
this.putAttribute(XFA.SUBJECTDNTAG, XFA.DELIMITERTAG, new StringAttr("delimiter", ","), 25, 8, 0);
this.putElement(XFA.SUBJECTDNTAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 25, 8, 0);
this.putPropAttrs(XFA.KEYUSAGETAG);
this.putAttribute(XFA.KEYUSAGETAG, XFA.DIGITALSIGNATURETAG, null, 25, 8, 0);
this.putAttribute(XFA.KEYUSAGETAG, XFA.NONREPUDIATIONTAG, null, 25, 8, 0);
this.putAttribute(XFA.KEYUSAGETAG, XFA.KEYENCIPHERMENTTAG, null, 25, 8, 0);
this.putAttribute(XFA.KEYUSAGETAG, XFA.DATAENCIPHERMENTTAG, null, 25, 8, 0);
this.putAttribute(XFA.KEYUSAGETAG, XFA.KEYAGREEMENTTAG, null, 25, 8, 0);
this.putAttribute(XFA.KEYUSAGETAG, XFA.KEYCERTSIGNTAG, null, 25, 8, 0);
this.putAttribute(XFA.KEYUSAGETAG, XFA.CRLSIGNTAG, null, 25, 8, 0);
this.putAttribute(XFA.KEYUSAGETAG, XFA.ENCIPHERONLYTAG, null, 25, 8, 0);
this.putAttribute(XFA.KEYUSAGETAG, XFA.DECIPHERONLYTAG, null, 25, 8, 0);
this.putAttribute(XFA.KEYUSAGETAG, EnumValue.getEnum(XFA.TYPETAG, EnumAttr.getEnum(-2140930047)), 25, 8, 0);
this.putPropAttrs(XFA.DEFAULTUITAG);
this.putElement(XFA.DEFAULTUITAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.SOLIDTAG);
this.putElement(XFA.SOLIDTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.BREAKTAG);
this.putAttribute(XFA.BREAKTAG, XFA.AFTERTARGETTAG, null, 21, 5, 0);
this.putAttribute(XFA.BREAKTAG, EnumValue.getEnum(XFA.AFTERTAG, EnumAttr.getEnum(3473408)), 21, 5, 0);
this.putAttribute(XFA.BREAKTAG, XFA.BEFORETARGETTAG, null, 21, 5, 0);
this.putAttribute(XFA.BREAKTAG, EnumValue.getEnum(XFA.BEFORETAG, EnumAttr.getEnum(3473408)), 21, 5, 0);
this.putAttribute(XFA.BREAKTAG, XFA.BOOKENDLEADERTAG, null, 21, 5, 0);
this.putAttribute(XFA.BREAKTAG, XFA.BOOKENDTRAILERTAG, null, 21, 5, 0);
this.putAttribute(XFA.BREAKTAG, XFA.OVERFLOWLEADERTAG, null, 21, 5, 0);
this.putAttribute(XFA.BREAKTAG, XFA.OVERFLOWTARGETTAG, null, 21, 5, 0);
this.putAttribute(XFA.BREAKTAG, XFA.OVERFLOWTRAILERTAG, null, 21, 5, 0);
this.putAttribute(XFA.BREAKTAG, EnumValue.getEnum(XFA.STARTNEWTAG, EnumAttr.getEnum(1074003968)), 21, 5, 0);
this.putElement(XFA.BREAKTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.CHOICELISTTAG);
this.putAttribute(XFA.CHOICELISTTAG, EnumValue.getEnum(XFA.COMMITONTAG, EnumAttr.getEnum(6619137)), 22, 5, 0);
this.putAttribute(XFA.CHOICELISTTAG, EnumValue.getEnum(XFA.OPENTAG, EnumAttr.getEnum(2293760)), 21, 5, 0);
this.putAttribute(XFA.CHOICELISTTAG, EnumValue.getEnum(XFA.TEXTENTRYTAG, EnumAttr.getEnum(1074003968)), 21, 5, 0);
this.putElement(XFA.CHOICELISTTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.CHOICELISTTAG, XFA.BORDERTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.CHOICELISTTAG, XFA.MARGINTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.COLORTAG);
this.putAttribute(XFA.COLORTAG, XFA.CSPACETAG, new StringAttr("cSpace", "SRGB"), 21, 5, 0);
this.putAttribute(XFA.COLORTAG, XFA.VALUETAG, new StringAttr("value", "0,0,0"), 21, 5, 0);
this.putElement(XFA.COLORTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.BREAKBEFORETAG);
this.putAttribute(XFA.BREAKBEFORETAG, XFA.TARGETTAG, null, 24, 5, 0);
this.putAttribute(XFA.BREAKBEFORETAG, EnumValue.getEnum(XFA.TARGETTYPETAG, EnumAttr.getEnum(3473408)), 24, 5, 0);
this.putAttribute(XFA.BREAKBEFORETAG, XFA.LEADERTAG, null, 24, 5, 0);
this.putAttribute(XFA.BREAKBEFORETAG, XFA.TRAILERTAG, null, 24, 5, 0);
this.putAttribute(XFA.BREAKBEFORETAG, EnumValue.getEnum(XFA.STARTNEWTAG, EnumAttr.getEnum(1074003968)), 24, 5, 0);
this.putElement(XFA.BREAKBEFORETAG, XFA.SCRIPTTAG, ChildReln.getZeroOrOne(), 24, 5, 0);
this.putPropAttrs(XFA.BREAKAFTERTAG);
this.putAttribute(XFA.BREAKAFTERTAG, XFA.TARGETTAG, null, 24, 5, 0);
this.putAttribute(XFA.BREAKAFTERTAG, EnumValue.getEnum(XFA.TARGETTYPETAG, EnumAttr.getEnum(3473408)), 24, 5, 0);
this.putAttribute(XFA.BREAKAFTERTAG, XFA.LEADERTAG, null, 24, 5, 0);
this.putAttribute(XFA.BREAKAFTERTAG, XFA.TRAILERTAG, null, 24, 5, 0);
this.putAttribute(XFA.BREAKAFTERTAG, EnumValue.getEnum(XFA.STARTNEWTAG, EnumAttr.getEnum(1074003968)), 24, 5, 0);
this.putElement(XFA.BREAKAFTERTAG, XFA.SCRIPTTAG, ChildReln.getZeroOrOne(), 24, 5, 0);
this.putPropAttrs(XFA.OVERFLOWTAG);
this.putAttribute(XFA.OVERFLOWTAG, XFA.LEADERTAG, null, 24, 5, 0);
this.putAttribute(XFA.OVERFLOWTAG, XFA.TRAILERTAG, null, 24, 5, 0);
this.putAttribute(XFA.OVERFLOWTAG, XFA.TARGETTAG, null, 24, 5, 0);
this.putPropAttrs(XFA.BOOKENDTAG);
this.putAttribute(XFA.BOOKENDTAG, XFA.LEADERTAG, null, 24, 5, 0);
this.putAttribute(XFA.BOOKENDTAG, XFA.TRAILERTAG, null, 24, 5, 0);
this.putPropAttrs(XFA.CONNECTTAG);
this.putAttribute(XFA.CONNECTTAG, XFA.REFTAG, null, 21, 5, 0);
this.putAttribute(XFA.CONNECTTAG, XFA.CONNECTIONTAG, null, 21, 5, 0);
this.putAttribute(XFA.CONNECTTAG, EnumValue.getEnum(XFA.USAGETAG, EnumAttr.getEnum(6225922)), 21, 5, 0);
this.putElement(XFA.CONNECTTAG, XFA.PICTURETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putChildAttrs(XFA.DATETAG);
this.putElement(XFA.DATETAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putChildAttrs(XFA.DATETIMETAG);
this.putElement(XFA.DATETIMETAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putChildAttrs(XFA.DECIMALTAG);
this.putAttribute(XFA.DECIMALTAG, XFA.FRACDIGITSTAG, new Int("fracDigits", 2), 21, 5, 0);
this.putAttribute(XFA.DECIMALTAG, XFA.LEADDIGITSTAG, new Int("leadDigits", -1), 21, 5, 0);
this.putElement(XFA.DECIMALTAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putChildAttrs(XFA.FILTERTAG);
this.putAttribute(XFA.FILTERTAG, XFA.VERSIONTAG, null, 25, 8, 0);
this.putAttribute(XFA.FILTERTAG, XFA.ADDREVOCATIONINFOTAG, null, 25, 8, 0);
this.putElement(XFA.FILTERTAG, XFA.HANDLERTAG, ChildReln.getZeroOrOne(), 25, 8, 0);
this.putElement(XFA.FILTERTAG, XFA.REASONSTAG, ChildReln.getZeroOrOne(), 25, 8, 0);
this.putElement(XFA.FILTERTAG, XFA.CERTIFICATESTAG, ChildReln.getZeroOrOne(), 25, 8, 0);
this.putElement(XFA.FILTERTAG, XFA.MDPTAG, ChildReln.getZeroOrOne(), 25, 8, 0);
this.putElement(XFA.FILTERTAG, XFA.TIMESTAMPTAG, ChildReln.getZeroOrOne(), 25, 8, 0);
this.putElement(XFA.FILTERTAG, XFA.ENCODINGSTAG, ChildReln.getZeroOrOne(), 25, 8, 0);
this.putElement(XFA.FILTERTAG, XFA.DIGESTMETHODSTAG, ChildReln.getZeroOrOne(), 25, 8, 0);
this.putElement(XFA.FILTERTAG, XFA.LOCKDOCUMENTTAG, ChildReln.getZeroOrOne(), 28, 8, 0);
this.putElement(XFA.FILTERTAG, XFA.APPEARANCEFILTERTAG, ChildReln.getZeroOrOne(), 28, 8, 0);
this.putPropAttrs(XFA.MDPTAG);
this.putAttribute(XFA.MDPTAG, EnumValue.getEnum(XFA.SIGNATURETYPETAG, EnumAttr.getEnum(7143424)), 25, 8, 0);
this.putAttribute(XFA.MDPTAG, EnumValue.getEnum(XFA.PERMISSIONSTAG, EnumAttr.getEnum(7208961)), 25, 8, 0);
this.putPropAttrs(XFA.TIMESTAMPTAG);
this.putAttribute(XFA.TIMESTAMPTAG, EnumValue.getEnum(XFA.TYPETAG, EnumAttr.getEnum(-2140930047)), 25, 8, 0);
this.putAttribute(XFA.TIMESTAMPTAG, XFA.SERVERTAG, null, 25, 8, 0);
this.putPropAttrs(XFA.ENCODINGSTAG);
this.putAttribute(XFA.ENCODINGSTAG, EnumValue.getEnum(XFA.TYPETAG, EnumAttr.getEnum(-2140930047)), 25, 8, 0);
this.putElement(XFA.ENCODINGSTAG, XFA.ENCODINGTAG, ChildReln.getZeroOrMore(), 25, 8, 0);
this.putPropAttrs(XFA.ENCODINGTAG);
this.putElement(XFA.ENCODINGTAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 25, 8, 0);
this.putPropAttrs(XFA.DIGESTMETHODSTAG);
this.putAttribute(XFA.DIGESTMETHODSTAG, EnumValue.getEnum(XFA.TYPETAG, EnumAttr.getEnum(-2140930047)), 25, 8, 0);
this.putElement(XFA.DIGESTMETHODSTAG, XFA.DIGESTMETHODTAG, ChildReln.getZeroOrMore(), 25, 8, 0);
this.putPropAttrs(XFA.DIGESTMETHODTAG);
this.putElement(XFA.DIGESTMETHODTAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 25, 8, 0);
this.putPropAttrs(XFA.LOCKDOCUMENTTAG);
this.putAttribute(XFA.LOCKDOCUMENTTAG, EnumValue.getEnum(XFA.TYPETAG, EnumAttr.getEnum(-2140930047)), 28, 8, 0);
this.putElement(XFA.LOCKDOCUMENTTAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 28, 8, 0);
this.putPropAttrs(XFA.APPEARANCEFILTERTAG);
this.putAttribute(XFA.APPEARANCEFILTERTAG, EnumValue.getEnum(XFA.TYPETAG, EnumAttr.getEnum(-2140930047)), 28, 8, 0);
this.putElement(XFA.APPEARANCEFILTERTAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 28, 8, 0);
this.putChildAttrs(XFA.FLOATTAG);
this.putElement(XFA.FLOATTAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.HANDLERTAG);
this.putAttribute(XFA.HANDLERTAG, EnumValue.getEnum(XFA.TYPETAG, EnumAttr.getEnum(-2140930047)), 25, 8, 0);
this.putElement(XFA.HANDLERTAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 25, 8, 0);
this.putChildAttrs(XFA.INTEGERTAG);
this.putElement(XFA.INTEGERTAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putChildAttrs(XFA.TEXTTAG);
this.putAttribute(XFA.TEXTTAG, XFA.MAXCHARSTAG, new Int("maxChars", 0), 21, 5, 0);
this.putAttribute(XFA.TEXTTAG, XFA.RIDTAG, null, 27, 5, 0);
this.putElement(XFA.TEXTTAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putChildAttrs(XFA.TIMETAG);
this.putElement(XFA.TIMETAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putChildAttrs(XFA.EXDATATAG);
this.putAttribute(XFA.EXDATATAG, XFA.CONTENTTYPETAG, new StringAttr("contentType", "text/plain"), 21, 5, 0);
this.putAttribute(XFA.EXDATATAG, XFA.HREFTAG, null, 21, 5, 0);
this.putAttribute(XFA.EXDATATAG, XFA.MAXLENGTHTAG, new Int("maxLength", -1), 21, 5, 0);
this.putAttribute(XFA.EXDATATAG, EnumValue.getEnum(XFA.TRANSFERENCODINGTAG, EnumAttr.getEnum(3735552)), 21, 5, 0);
this.putAttribute(XFA.EXDATATAG, XFA.RIDTAG, null, 27, 5, 0);
this.putElement(XFA.EXDATATAG, XFA.TEXTNODETAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.EXDATATAG, XFA.RICHTEXTNODETAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.EXDATATAG, XFA.XMLMULTISELECTNODETAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putPropAttrs(XFA.DESCTAG);
this.putElement(XFA.DESCTAG, XFA.BOOLEANTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.DESCTAG, XFA.DATETAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.DESCTAG, XFA.DATETIMETAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.DESCTAG, XFA.DECIMALTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.DESCTAG, XFA.EXDATATAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.DESCTAG, XFA.FLOATTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.DESCTAG, XFA.IMAGETAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.DESCTAG, XFA.INTEGERTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.DESCTAG, XFA.TEXTTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.DESCTAG, XFA.TIMETAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putPropAttrs(XFA.FILLTAG);
this.putAttribute(XFA.FILLTAG, EnumValue.getEnum(XFA.PRESENCETAG, EnumAttr.getEnum(1076494336)), 21, 5, 0);
this.putElement(XFA.FILLTAG, XFA.COLORTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.FILLTAG, XFA.SOLIDTAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.FILLTAG, XFA.PATTERNTAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.FILLTAG, XFA.LINEARTAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.FILLTAG, XFA.RADIALTAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.FILLTAG, XFA.STIPPLETAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.FILLTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.FONTTAG);
this.putAttribute(XFA.FONTTAG, EnumValue.getEnum(XFA.LINETHROUGHTAG, EnumAttr.getEnum(786432)), 21, 5, 0);
this.putAttribute(XFA.FONTTAG, EnumValue.getEnum(XFA.LINETHROUGHPERIODTAG, EnumAttr.getEnum(851968)), 21, 5, 0);
this.putAttribute(XFA.FONTTAG, XFA.TYPEFACETAG, new StringAttr("typeface", "Courier Std"), 21, 5, 0);
this.putAttribute(XFA.FONTTAG, XFA.SIZETAG, new Measurement("size", "10pt"), 21, 5, 0);
this.putAttribute(XFA.FONTTAG, EnumValue.getEnum(XFA.WEIGHTTAG, EnumAttr.getEnum(1310720)), 21, 5, 0);
this.putAttribute(XFA.FONTTAG, EnumValue.getEnum(XFA.POSTURETAG, EnumAttr.getEnum(1114113)), 21, 5, 0);
this.putAttribute(XFA.FONTTAG, EnumValue.getEnum(XFA.UNDERLINETAG, EnumAttr.getEnum(1179648)), 21, 5, 0);
this.putAttribute(XFA.FONTTAG, EnumValue.getEnum(XFA.UNDERLINEPERIODTAG, EnumAttr.getEnum(1245184)), 21, 5, 0);
this.putAttribute(XFA.FONTTAG, EnumValue.getEnum(XFA.OVERLINETAG, EnumAttr.getEnum(917504)), 21, 5, 0);
this.putAttribute(XFA.FONTTAG, EnumValue.getEnum(XFA.OVERLINEPERIODTAG, EnumAttr.getEnum(983040)), 21, 5, 0);
this.putAttribute(XFA.FONTTAG, XFA.BASELINESHIFTTAG, new Measurement("baselineShift", "0"), 21, 5, 0);
this.putAttribute(XFA.FONTTAG, XFA.FONTHORIZONTALSCALETAG, new StringAttr("fontHorizontalScale", "100%"), 28, 5, 0);
this.putAttribute(XFA.FONTTAG, XFA.FONTVERTICALSCALETAG, new StringAttr("fontVerticalScale", "100%"), 28, 5, 0);
this.putAttribute(XFA.FONTTAG, XFA.LETTERSPACINGTAG, new StringAttr("letterSpacing", "0"), 28, 5, 0);
this.putAttribute(XFA.FONTTAG, EnumValue.getEnum(XFA.KERNINGMODETAG, EnumAttr.getEnum(8716288)), 28, 5, 0);
this.putElement(XFA.FONTTAG, XFA.FILLTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.FONTTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.FORMATTAG);
this.putElement(XFA.FORMATTAG, XFA.PICTURETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.FORMATTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putChildAttrs(XFA.ITEMSTAG);
this.putAttribute(XFA.ITEMSTAG, EnumValue.getEnum(XFA.PRESENCETAG, EnumAttr.getEnum(1076494336)), 21, 5, 0);
this.putAttribute(XFA.ITEMSTAG, EnumValue.getEnum(XFA.SAVETAG, EnumAttr.getEnum(1074003968)), 21, 5, 0);
this.putAttribute(XFA.ITEMSTAG, XFA.REFTAG, null, 21, 5, 0);
this.putElement(XFA.ITEMSTAG, XFA.BOOLEANTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.ITEMSTAG, XFA.DATETAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.ITEMSTAG, XFA.DATETIMETAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.ITEMSTAG, XFA.DECIMALTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.ITEMSTAG, XFA.EXDATATAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.ITEMSTAG, XFA.FLOATTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.ITEMSTAG, XFA.IMAGETAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.ITEMSTAG, XFA.INTEGERTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.ITEMSTAG, XFA.TEXTTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.ITEMSTAG, XFA.TIMETAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putPropAttrs(XFA.ISSUERSTAG);
this.putAttribute(XFA.ISSUERSTAG, EnumValue.getEnum(XFA.TYPETAG, EnumAttr.getEnum(-2140930047)), 25, 5, 0);
this.putElement(XFA.ISSUERSTAG, XFA.CERTIFICATETAG, ChildReln.getZeroOrMore(), 25, 5, 0);
this.putPropAttrs(XFA.KEEPTAG);
this.putAttribute(XFA.KEEPTAG, EnumValue.getEnum(XFA.INTACTTAG, EnumAttr.getEnum(3538944)), 21, 5, 0);
this.putAttribute(XFA.KEEPTAG, EnumValue.getEnum(XFA.NEXTTAG, EnumAttr.getEnum(3538944)), 21, 5, 0);
this.putAttribute(XFA.KEEPTAG, EnumValue.getEnum(XFA.PREVIOUSTAG, EnumAttr.getEnum(3538944)), 21, 5, 0);
this.putElement(XFA.KEEPTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.MARGINTAG);
this.putAttribute(XFA.MARGINTAG, XFA.TOPINSETTAG, new Measurement("topInset", "0"), 21, 5, 0);
this.putAttribute(XFA.MARGINTAG, XFA.LEFTINSETTAG, new Measurement("leftInset", "0"), 21, 5, 0);
this.putAttribute(XFA.MARGINTAG, XFA.BOTTOMINSETTAG, new Measurement("bottomInset", "0"), 21, 5, 0);
this.putAttribute(XFA.MARGINTAG, XFA.RIGHTINSETTAG, new Measurement("rightInset", "0"), 21, 5, 0);
this.putElement(XFA.MARGINTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.MESSAGETAG);
this.putElement(XFA.MESSAGETAG, XFA.TEXTTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putPropAttrs(XFA.IMAGEEDITTAG);
this.putAttribute(XFA.IMAGEEDITTAG, EnumValue.getEnum(XFA.DATATAG, EnumAttr.getEnum(6356992)), 21, 5, 0);
this.putElement(XFA.IMAGEEDITTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.IMAGEEDITTAG, XFA.BORDERTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.IMAGEEDITTAG, XFA.MARGINTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.NUMERICEDITTAG);
this.putAttribute(XFA.NUMERICEDITTAG, EnumValue.getEnum(XFA.HSCROLLPOLICYTAG, EnumAttr.getEnum(7536640)), 25, 8, 0);
this.putElement(XFA.NUMERICEDITTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.NUMERICEDITTAG, XFA.BORDERTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.NUMERICEDITTAG, XFA.MARGINTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.NUMERICEDITTAG, XFA.COMBTAG, ChildReln.getZeroOrOne(), 25, 5, 0);
this.putPropAttrs(XFA.OCCURTAG);
this.putAttribute(XFA.OCCURTAG, XFA.INITIALTAG, new Int("initial", 1), 21, 1, 0);
this.putAttribute(XFA.OCCURTAG, XFA.MINTAG, new Int("max", 1), 21, 1, 0);
this.putAttribute(XFA.OCCURTAG, XFA.MAXTAG, new Int("min", 1), 21, 1, 0);
this.putElement(XFA.OCCURTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.OCCURTAG, XFA.SCRIPTTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.PASSWORDEDITTAG);
this.putAttribute(XFA.PASSWORDEDITTAG, XFA.PASSWORDCHARTAG, new StringAttr("passwordChar", "*"), 21, 5, 0);
this.putAttribute(XFA.PASSWORDEDITTAG, EnumValue.getEnum(XFA.HSCROLLPOLICYTAG, EnumAttr.getEnum(7536640)), 25, 8, 0);
this.putElement(XFA.PASSWORDEDITTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.PASSWORDEDITTAG, XFA.BORDERTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.PASSWORDEDITTAG, XFA.MARGINTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.TEXTEDITTAG);
this.putAttribute(XFA.TEXTEDITTAG, EnumValue.getEnum(XFA.ALLOWRICHTEXTTAG, EnumAttr.getEnum(1074003968)), 21, 5, 0);
this.putAttribute(XFA.TEXTEDITTAG, EnumValue.getEnum(XFA.MULTILINETAG, EnumAttr.getEnum(1074003969)), 21, 5, 0);
this.putAttribute(XFA.TEXTEDITTAG, EnumValue.getEnum(XFA.VSCROLLPOLICYTAG, EnumAttr.getEnum(7536640)), 25, 8, 0);
this.putAttribute(XFA.TEXTEDITTAG, EnumValue.getEnum(XFA.HSCROLLPOLICYTAG, EnumAttr.getEnum(7536640)), 25, 8, 0);
this.putElement(XFA.TEXTEDITTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.TEXTEDITTAG, XFA.BORDERTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.TEXTEDITTAG, XFA.MARGINTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.TEXTEDITTAG, XFA.COMBTAG, ChildReln.getZeroOrOne(), 25, 5, 0);
this.putPropAttrs(XFA.UITAG);
this.putElement(XFA.UITAG, XFA.BARCODETAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.UITAG, XFA.BUTTONTAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.UITAG, XFA.CHECKBUTTONTAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.UITAG, XFA.CHOICELISTTAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.UITAG, XFA.DATETIMEEDITTAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.UITAG, XFA.DEFAULTUITAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.UITAG, XFA.EXOBJECTTAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.UITAG, XFA.NUMERICEDITTAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.UITAG, XFA.IMAGEEDITTAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.UITAG, XFA.PASSWORDEDITTAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.UITAG, XFA.PICTURETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.UITAG, XFA.SIGNATURETAG, ChildReln.getOneOfChild(), 21, 8, 0);
this.putElement(XFA.UITAG, XFA.TEXTEDITTAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.UITAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putChildAttrs(XFA.IMAGETAG);
this.putAttribute(XFA.IMAGETAG, XFA.CONTENTTYPETAG, null, 21, 5, 0);
this.putAttribute(XFA.IMAGETAG, XFA.HREFTAG, null, 21, 5, 0);
this.putAttribute(XFA.IMAGETAG, EnumValue.getEnum(XFA.TRANSFERENCODINGTAG, EnumAttr.getEnum(3735553)), 21, 5, 0);
this.putAttribute(XFA.IMAGETAG, EnumValue.getEnum(XFA.ASPECTTAG, EnumAttr.getEnum(5111809)), 21, 5, 0);
this.putElement(XFA.IMAGETAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.PICTURETAG);
this.putElement(XFA.PICTURETAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putChildAttrs(XFA.SCRIPTTAG);
this.putAttribute(XFA.SCRIPTTAG, XFA.CONTENTTYPETAG, new StringAttr("contentType", "application/x-formcalc"), 21, 5, 0);
this.putAttribute(XFA.SCRIPTTAG, XFA.BINDINGTAG, new StringAttr("binding", "XFA"), 21, 5, 0);
this.putAttribute(XFA.SCRIPTTAG, EnumValue.getEnum(XFA.RUNATTAG, EnumAttr.getEnum(1079836672)), 21, 5, 0);
this.putAttribute(XFA.SCRIPTTAG, EnumValue.getEnum(XFA.STATELESSTAG, EnumAttr.getEnum(1074003968)), 21, 5, 0);
this.putElement(XFA.SCRIPTTAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.CALCULATETAG);
this.putAttribute(XFA.CALCULATETAG, EnumValue.getEnum(XFA.OVERRIDETAG, EnumAttr.getEnum(-2144862208)), 21, 5, 0);
this.putElement(XFA.CALCULATETAG, XFA.SCRIPTTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.CALCULATETAG, XFA.MESSAGETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.CALCULATETAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.VALIDATETAG);
this.putAttribute(XFA.VALIDATETAG, EnumValue.getEnum(XFA.NULLTESTTAG, EnumAttr.getEnum(3670016)), 21, 5, 0);
this.putAttribute(XFA.VALIDATETAG, EnumValue.getEnum(XFA.FORMATTESTTAG, EnumAttr.getEnum(3670017)), 21, 5, 0);
this.putAttribute(XFA.VALIDATETAG, EnumValue.getEnum(XFA.SCRIPTTESTTAG, EnumAttr.getEnum(3670018)), 21, 5, 0);
this.putAttribute(XFA.VALIDATETAG, EnumValue.getEnum(XFA.DISABLEALLTAG, EnumAttr.getEnum(1074003968)), 28, 5, 0);
this.putElement(XFA.VALIDATETAG, XFA.SCRIPTTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.VALIDATETAG, XFA.MESSAGETAG, ChildReln.getZeroOrOne(), 21, 7, 0);
this.putElement(XFA.VALIDATETAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.VALIDATETAG, XFA.PICTURETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.LINEARTAG);
this.putAttribute(XFA.LINEARTAG, EnumValue.getEnum(XFA.TYPETAG, EnumAttr.getEnum(-2145648640)), 21, 5, 0);
this.putElement(XFA.LINEARTAG, XFA.COLORTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.LINEARTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.PATTERNTAG);
this.putAttribute(XFA.PATTERNTAG, EnumValue.getEnum(XFA.TYPETAG, EnumAttr.getEnum(-2144796670)), 21, 5, 0);
this.putElement(XFA.PATTERNTAG, XFA.COLORTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.PATTERNTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.RADIALTAG);
this.putAttribute(XFA.RADIALTAG, EnumValue.getEnum(XFA.TYPETAG, EnumAttr.getEnum(-2144665599)), 21, 5, 0);
this.putElement(XFA.RADIALTAG, XFA.COLORTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.RADIALTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.CORNERTAG);
this.putAttribute(XFA.CORNERTAG, EnumValue.getEnum(XFA.JOINTAG, EnumAttr.getEnum(1703937)), 21, 5, 0);
this.putAttribute(XFA.CORNERTAG, EnumValue.getEnum(XFA.PRESENCETAG, EnumAttr.getEnum(1076494336)), 21, 5, 0);
this.putAttribute(XFA.CORNERTAG, XFA.RADIUSTAG, new Measurement("radius", "0"), 21, 5, 0);
this.putAttribute(XFA.CORNERTAG, EnumValue.getEnum(XFA.STROKETAG, EnumAttr.getEnum(3342336)), 21, 5, 0);
this.putAttribute(XFA.CORNERTAG, XFA.THICKNESSTAG, new Measurement("thickness", "0.5pt"), 21, 5, 0);
this.putAttribute(XFA.CORNERTAG, EnumValue.getEnum(XFA.INVERTEDTAG, EnumAttr.getEnum(1074003968)), 21, 5, 0);
this.putElement(XFA.CORNERTAG, XFA.COLORTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.CORNERTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.EDGETAG);
this.putAttribute(XFA.EDGETAG, EnumValue.getEnum(XFA.PRESENCETAG, EnumAttr.getEnum(1076494336)), 21, 5, 0);
this.putAttribute(XFA.EDGETAG, EnumValue.getEnum(XFA.STROKETAG, EnumAttr.getEnum(3342336)), 21, 5, 0);
this.putAttribute(XFA.EDGETAG, XFA.THICKNESSTAG, new Measurement("thickness", "0.5pt"), 21, 5, 0);
this.putAttribute(XFA.EDGETAG, EnumValue.getEnum(XFA.CAPTAG, EnumAttr.getEnum(327682)), 21, 5, 0);
this.putElement(XFA.EDGETAG, XFA.COLORTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.EDGETAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putChildAttrs(XFA.BOOLEANTAG);
this.putElement(XFA.BOOLEANTAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putChildAttrs(XFA.EXTRASTAG);
this.putElement(XFA.EXTRASTAG, XFA.BOOLEANTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXTRASTAG, XFA.DATETAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXTRASTAG, XFA.DATETIMETAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXTRASTAG, XFA.DECIMALTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXTRASTAG, XFA.EXDATATAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXTRASTAG, XFA.FLOATTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXTRASTAG, XFA.IMAGETAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXTRASTAG, XFA.INTEGERTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXTRASTAG, XFA.TEXTTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXTRASTAG, XFA.TIMETAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXTRASTAG, XFA.EXTRASTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putPropAttrs(XFA.VARIABLESTAG);
this.putElement(XFA.VARIABLESTAG, XFA.BOOLEANTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.VARIABLESTAG, XFA.DATETAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.VARIABLESTAG, XFA.DATETIMETAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.VARIABLESTAG, XFA.DECIMALTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.VARIABLESTAG, XFA.EXDATATAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.VARIABLESTAG, XFA.FLOATTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.VARIABLESTAG, XFA.IMAGETAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.VARIABLESTAG, XFA.INTEGERTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.VARIABLESTAG, XFA.TEXTTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.VARIABLESTAG, XFA.TIMETAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.VARIABLESTAG, XFA.SCRIPTTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.VARIABLESTAG, XFA.MANIFESTTAG, ChildReln.getZeroOrMore(), 24, 5, 0);
this.putPropAttrs(XFA.STIPPLETAG);
this.putAttribute(XFA.STIPPLETAG, XFA.RATETAG, new Int("rate", 50), 21, 5, 0);
this.putElement(XFA.STIPPLETAG, XFA.COLORTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.STIPPLETAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.ARCTAG);
this.putAttribute(XFA.ARCTAG, EnumValue.getEnum(XFA.HANDTAG, EnumAttr.getEnum(1507330)), 21, 5, 0);
this.putAttribute(XFA.ARCTAG, EnumValue.getEnum(XFA.CIRCULARTAG, EnumAttr.getEnum(1074003968)), 21, 5, 0);
this.putAttribute(XFA.ARCTAG, XFA.STARTANGLETAG, new Rotate("startAngle", "0"), 21, 5, 0);
this.putAttribute(XFA.ARCTAG, XFA.SWEEPANGLETAG, new Rotate("sweepAngle", "360"), 21, 5, 0);
this.putElement(XFA.ARCTAG, XFA.EDGETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.ARCTAG, XFA.FILLTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putChildAttrs(XFA.AREATAG);
this.putAttribute(XFA.AREATAG, XFA.RELEVANTTAG, new StringAttr("relevant", ""), 21, 5, 0);
this.putAttribute(XFA.AREATAG, XFA.COLSPANTAG, new Int("colSpan", 1), 21, 1, 0);
this.putAttribute(XFA.AREATAG, XFA.XTAG, new Measurement("area", "0"), 21, 1, 0);
this.putAttribute(XFA.AREATAG, XFA.YTAG, new Measurement("area", "0"), 21, 1, 0);
this.putElement(XFA.AREATAG, XFA.DESCTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.AREATAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.AREATAG, XFA.AREATAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.AREATAG, XFA.DRAWTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.AREATAG, XFA.EXCLGROUPTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.AREATAG, XFA.EXOBJECTTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.AREATAG, XFA.FIELDTAG, ChildReln.getZeroOrMore(), 21, 7, 0);
this.putElement(XFA.AREATAG, XFA.SUBFORMTAG, ChildReln.getZeroOrMore(), 21, 7, 0);
this.putElement(XFA.AREATAG, XFA.SUBFORMSETTAG, ChildReln.getZeroOrMore(), 21, 1, 0);
this.putPropAttrs(XFA.BORDERTAG);
this.putAttribute(XFA.BORDERTAG, EnumValue.getEnum(XFA.BREAKTAG, EnumAttr.getEnum(5832705)), 21, 5, 0);
this.putAttribute(XFA.BORDERTAG, EnumValue.getEnum(XFA.PRESENCETAG, EnumAttr.getEnum(1076494336)), 21, 5, 0);
this.putAttribute(XFA.BORDERTAG, EnumValue.getEnum(XFA.HANDTAG, EnumAttr.getEnum(1507330)), 21, 5, 0);
this.putAttribute(XFA.BORDERTAG, XFA.RELEVANTTAG, new StringAttr("relevant", ""), 24, 5, 0);
this.putElement(XFA.BORDERTAG, XFA.MARGINTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.BORDERTAG, XFA.EDGETAG, this.moZeroOrMore4, 21, 5, 0);
this.putElement(XFA.BORDERTAG, XFA.CORNERTAG, this.moZeroOrMore4, 21, 5, 0);
this.putElement(XFA.BORDERTAG, XFA.FILLTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.BORDERTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.CAPTIONTAG);
this.putAttribute(XFA.CAPTIONTAG, EnumValue.getEnum(XFA.PRESENCETAG, EnumAttr.getEnum(1076494336)), 21, 5, 0);
this.putAttribute(XFA.CAPTIONTAG, EnumValue.getEnum(XFA.PLACEMENTTAG, EnumAttr.getEnum(4194307)), 21, 5, 0);
this.putAttribute(XFA.CAPTIONTAG, XFA.RESERVETAG, new Measurement("reserve", "-1"), 21, 5, 0);
this.putElement(XFA.CAPTIONTAG, XFA.PARATAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.CAPTIONTAG, XFA.FONTTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.CAPTIONTAG, XFA.VALUETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.CAPTIONTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.CAPTIONTAG, XFA.MARGINTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.CHECKBUTTONTAG);
this.putAttribute(XFA.CHECKBUTTONTAG, EnumValue.getEnum(XFA.SHAPETAG, EnumAttr.getEnum(3145728)), 21, 5, 0);
this.putAttribute(XFA.CHECKBUTTONTAG, XFA.SIZETAG, new Measurement("size", "10pt"), 21, 5, 0);
this.putAttribute(XFA.CHECKBUTTONTAG, EnumValue.getEnum(XFA.ALLOWNEUTRALTAG, EnumAttr.getEnum(1074003968)), 21, 5, 0);
this.putAttribute(XFA.CHECKBUTTONTAG, EnumValue.getEnum(XFA.MARKTAG, EnumAttr.getEnum(7733254)), 25, 5, 0);
this.putElement(XFA.CHECKBUTTONTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.CHECKBUTTONTAG, XFA.BORDERTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.CHECKBUTTONTAG, XFA.MARGINTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.COMBTAG);
this.putAttribute(XFA.COMBTAG, XFA.NUMBEROFCELLSTAG, new Int("numberOfCells", 0), 25, 5, 0);
this.putChildAttrs(XFA.CONTENTAREATAG);
this.putAttribute(XFA.CONTENTAREATAG, XFA.RELEVANTTAG, new StringAttr("relevant", ""), 21, 5, 0);
this.putAttribute(XFA.CONTENTAREATAG, XFA.HTAG, new Measurement("h", "0"), 21, 1, 0);
this.putAttribute(XFA.CONTENTAREATAG, XFA.WTAG, new Measurement("w", "0"), 21, 1, 0);
this.putAttribute(XFA.CONTENTAREATAG, XFA.XTAG, new Measurement("x", "0"), 21, 1, 0);
this.putAttribute(XFA.CONTENTAREATAG, XFA.YTAG, new Measurement("y", "0"), 21, 1, 0);
this.putElement(XFA.CONTENTAREATAG, XFA.DESCTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.CONTENTAREATAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putChildAttrs(XFA.DRAWTAG);
this.putAttribute(XFA.DRAWTAG, XFA.LOCALETAG, null, 24, 5, 0);
this.putAttribute(XFA.DRAWTAG, EnumValue.getEnum(XFA.ANCHORTYPETAG, EnumAttr.getEnum(131072)), 21, 1, 0);
this.putAttribute(XFA.DRAWTAG, XFA.COLSPANTAG, new Int("colSpan", 1), 21, 1, 0);
this.putAttribute(XFA.DRAWTAG, XFA.XTAG, new Measurement("x", "0"), 21, 1, 0);
this.putAttribute(XFA.DRAWTAG, XFA.YTAG, new Measurement("y", "0"), 21, 1, 0);
this.putAttribute(XFA.DRAWTAG, XFA.HTAG, new Measurement("h", "0"), 21, 1, 0);
this.putAttribute(XFA.DRAWTAG, XFA.WTAG, new Measurement("w", "0"), 21, 1, 0);
this.putAttribute(XFA.DRAWTAG, EnumValue.getEnum(XFA.HALIGNTAG, EnumAttr.getEnum(1441792)), 21, 5, 0);
this.putAttribute(XFA.DRAWTAG, EnumValue.getEnum(XFA.VALIGNTAG, EnumAttr.getEnum(4063232)), 21, 5, 0);
this.putAttribute(XFA.DRAWTAG, XFA.MAXHTAG, new Measurement("maxH", "0"), 21, 1, 0);
this.putAttribute(XFA.DRAWTAG, XFA.MAXWTAG, new Measurement("maxW", "0"), 21, 1, 0);
this.putAttribute(XFA.DRAWTAG, XFA.MINHTAG, new Measurement("minH", "0"), 21, 1, 0);
this.putAttribute(XFA.DRAWTAG, XFA.MINWTAG, new Measurement("minW", "0"), 21, 1, 0);
this.putAttribute(XFA.DRAWTAG, EnumValue.getEnum(XFA.PRESENCETAG, EnumAttr.getEnum(1076494336)), 21, 5, 0);
this.putAttribute(XFA.DRAWTAG, XFA.ROTATETAG, new Rotate("rotate", "0"), 21, 1, 0);
this.putAttribute(XFA.DRAWTAG, XFA.RELEVANTTAG, new StringAttr("relevant", ""), 21, 5, 0);
this.putElement(XFA.DRAWTAG, XFA.ASSISTTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.DRAWTAG, XFA.BORDERTAG, ChildReln.getZeroOrOne(), 21, 1, 0);
this.putElement(XFA.DRAWTAG, XFA.CAPTIONTAG, ChildReln.getZeroOrOne(), 21, 1, 0);
this.putElement(XFA.DRAWTAG, XFA.DESCTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.DRAWTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.DRAWTAG, XFA.FONTTAG, ChildReln.getZeroOrOne(), 21, 1, 0);
this.putElement(XFA.DRAWTAG, XFA.KEEPTAG, ChildReln.getZeroOrOne(), 28, 1, 0);
this.putElement(XFA.DRAWTAG, XFA.MARGINTAG, ChildReln.getZeroOrOne(), 21, 1, 0);
this.putElement(XFA.DRAWTAG, XFA.PARATAG, ChildReln.getZeroOrOne(), 21, 1, 0);
this.putElement(XFA.DRAWTAG, XFA.RENDERASTAG, ChildReln.getZeroOrOne(), 26, 32, 0);
this.putElement(XFA.DRAWTAG, XFA.SETPROPERTYTAG, ChildReln.getZeroOrMore(), 24, 5, 0);
this.putElement(XFA.DRAWTAG, XFA.TRAVERSALTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.DRAWTAG, XFA.UITAG, ChildReln.getZeroOrOne(), 21, 1, 0);
this.putElement(XFA.DRAWTAG, XFA.VALUETAG, ChildReln.getZeroOrOne(), 21, 1, 0);
this.putChildAttrs(XFA.EVENTTAG);
this.putAttribute(XFA.EVENTTAG, EnumValue.getEnum(XFA.ACTIVITYTAG, EnumAttr.getEnum(4915206)), 21, 5, 0);
this.putAttribute(XFA.EVENTTAG, XFA.REFTAG, new StringAttr("ref", "$"), 21, 5, 0);
this.putElement(XFA.EVENTTAG, XFA.SCRIPTTAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.EVENTTAG, XFA.SUBMITTAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.EVENTTAG, XFA.EXECUTETAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.EVENTTAG, XFA.SIGNDATATAG, ChildReln.getOneOfChild(), 24, 8, 0);
this.putElement(XFA.EVENTTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putAttribute(XFA.EVENTTAG, XFA.LISTENTAG, EnumValue.getEnum(XFA.LISTENTAG, EnumAttr.getEnum(1082720256)), 30, 5, 0);
this.putChildAttrs(XFA.EXOBJECTTAG);
this.putAttribute(XFA.EXOBJECTTAG, XFA.ARCHIVETAG, null, 21, 5, 0);
this.putAttribute(XFA.EXOBJECTTAG, XFA.CLASSIDTAG, null, 21, 5, 0);
this.putAttribute(XFA.EXOBJECTTAG, XFA.CODEBASETAG, null, 21, 5, 0);
this.putAttribute(XFA.EXOBJECTTAG, XFA.CODETYPETAG, null, 21, 5, 0);
this.putElement(XFA.EXOBJECTTAG, XFA.BOOLEANTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXOBJECTTAG, XFA.DATETAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXOBJECTTAG, XFA.DATETIMETAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXOBJECTTAG, XFA.DECIMALTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXOBJECTTAG, XFA.EXDATATAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXOBJECTTAG, XFA.EXOBJECTTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXOBJECTTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.EXOBJECTTAG, XFA.FLOATTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXOBJECTTAG, XFA.IMAGETAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXOBJECTTAG, XFA.INTEGERTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXOBJECTTAG, XFA.TEXTTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXOBJECTTAG, XFA.TIMETAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putChildAttrs(XFA.EXCLGROUPTAG);
this.putAttribute(XFA.EXCLGROUPTAG, XFA.ACCESSKEYTAG, null, 22, 5, 0);
this.putAttribute(XFA.EXCLGROUPTAG, EnumValue.getEnum(XFA.ACCESSTAG, EnumAttr.getEnum(65537)), 21, 5, 0);
this.putAttribute(XFA.EXCLGROUPTAG, EnumValue.getEnum(XFA.ANCHORTYPETAG, EnumAttr.getEnum(131072)), 21, 5, 0);
this.putAttribute(XFA.EXCLGROUPTAG, XFA.COLSPANTAG, new Int("colSpan", 1), 22, 5, 0);
this.putAttribute(XFA.EXCLGROUPTAG, XFA.HTAG, new Measurement("h", "0"), 21, 5, 0);
this.putAttribute(XFA.EXCLGROUPTAG, EnumValue.getEnum(XFA.HALIGNTAG, EnumAttr.getEnum(1441792)), 21, 5, 0);
this.putAttribute(XFA.EXCLGROUPTAG, EnumValue.getEnum(XFA.LAYOUTTAG, EnumAttr.getEnum(1769475)), 21, 5, 0);
this.putAttribute(XFA.EXCLGROUPTAG, XFA.MAXHTAG, new Measurement("maxH", "0"), 21, 5, 0);
this.putAttribute(XFA.EXCLGROUPTAG, XFA.MAXWTAG, new Measurement("maxW", "0"), 21, 5, 0);
this.putAttribute(XFA.EXCLGROUPTAG, XFA.MINHTAG, new Measurement("minH", "0"), 21, 5, 0);
this.putAttribute(XFA.EXCLGROUPTAG, XFA.MINWTAG, new Measurement("minW", "0"), 21, 5, 0);
this.putAttribute(XFA.EXCLGROUPTAG, EnumValue.getEnum(XFA.PRESENCETAG, EnumAttr.getEnum(1076494336)), 21, 5, 0);
this.putAttribute(XFA.EXCLGROUPTAG, XFA.RELEVANTTAG, new StringAttr("relevant", ""), 21, 5, 0);
this.putAttribute(XFA.EXCLGROUPTAG, EnumValue.getEnum(XFA.TRANSIENTTAG, EnumAttr.getEnum(1074003968)), 21, 5, 0);
this.putAttribute(XFA.EXCLGROUPTAG, EnumValue.getEnum(XFA.VALIGNTAG, EnumAttr.getEnum(4063232)), 21, 5, 0);
this.putAttribute(XFA.EXCLGROUPTAG, XFA.WTAG, new Measurement("w", "0"), 21, 5, 0);
this.putAttribute(XFA.EXCLGROUPTAG, XFA.XTAG, new Measurement("x", "0"), 21, 5, 0);
this.putAttribute(XFA.EXCLGROUPTAG, XFA.YTAG, new Measurement("y", "0"), 21, 5, 0);
this.putElement(XFA.EXCLGROUPTAG, XFA.ASSISTTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.EXCLGROUPTAG, XFA.BINDTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.EXCLGROUPTAG, XFA.BORDERTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.EXCLGROUPTAG, XFA.CALCULATETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.EXCLGROUPTAG, XFA.CAPTIONTAG, ChildReln.getZeroOrOne(), 21, 1, 0);
this.putElement(XFA.EXCLGROUPTAG, XFA.CONNECTTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXCLGROUPTAG, XFA.DESCTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.EXCLGROUPTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.EXCLGROUPTAG, XFA.MARGINTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.EXCLGROUPTAG, XFA.PARATAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.EXCLGROUPTAG, XFA.SETPROPERTYTAG, ChildReln.getZeroOrMore(), 24, 5, 0);
this.putElement(XFA.EXCLGROUPTAG, XFA.TRAVERSALTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.EXCLGROUPTAG, XFA.VALIDATETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.EXCLGROUPTAG, XFA.EVENTTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.EXCLGROUPTAG, XFA.FIELDTAG, ChildReln.getZeroOrMore(), 21, 7, 0);
this.putPropAttrs(XFA.EXECUTETAG);
this.putAttribute(XFA.EXECUTETAG, XFA.CONNECTIONTAG, null, 21, 5, 0);
this.putAttribute(XFA.EXECUTETAG, EnumValue.getEnum(XFA.RUNATTAG, EnumAttr.getEnum(1079836672)), 21, 5, 0);
this.putAttribute(XFA.EXECUTETAG, EnumValue.getEnum(XFA.EXECUTETYPETAG, EnumAttr.getEnum(6291456)), 21, 5, 0);
this.putChildAttrs(XFA.FIELDTAG);
this.putAttribute(XFA.FIELDTAG, XFA.LOCALETAG, null, 21, 5, 0);
this.putAttribute(XFA.FIELDTAG, XFA.ACCESSKEYTAG, null, 22, 5, 0);
this.putAttribute(XFA.FIELDTAG, EnumValue.getEnum(XFA.ACCESSTAG, EnumAttr.getEnum(65537)), 21, 7, 0);
this.putAttribute(XFA.FIELDTAG, EnumValue.getEnum(XFA.ANCHORTYPETAG, EnumAttr.getEnum(131072)), 21, 5, 0);
this.putAttribute(XFA.FIELDTAG, XFA.COLSPANTAG, new Int("colSpan", 1), 21, 1, 0);
this.putAttribute(XFA.FIELDTAG, XFA.XTAG, new Measurement("x", "0"), 21, 7, 0);
this.putAttribute(XFA.FIELDTAG, XFA.YTAG, new Measurement("y", "0"), 21, 7, 0);
this.putAttribute(XFA.FIELDTAG, XFA.HTAG, new Measurement("h", "0"), 21, 7, 0);
this.putAttribute(XFA.FIELDTAG, XFA.WTAG, new Measurement("w", "0"), 21, 7, 0);
this.putAttribute(XFA.FIELDTAG, EnumValue.getEnum(XFA.HALIGNTAG, EnumAttr.getEnum(1441792)), 21, 5, 0);
this.putAttribute(XFA.FIELDTAG, EnumValue.getEnum(XFA.VALIGNTAG, EnumAttr.getEnum(4063232)), 21, 5, 0);
this.putAttribute(XFA.FIELDTAG, XFA.MAXHTAG, new Measurement("maxH", "0"), 21, 5, 0);
this.putAttribute(XFA.FIELDTAG, XFA.MAXWTAG, new Measurement("maxW", "0"), 21, 5, 0);
this.putAttribute(XFA.FIELDTAG, XFA.MINHTAG, new Measurement("minH", "0"), 21, 5, 0);
this.putAttribute(XFA.FIELDTAG, XFA.MINWTAG, new Measurement("minW", "0"), 21, 5, 0);
this.putAttribute(XFA.FIELDTAG, EnumValue.getEnum(XFA.PRESENCETAG, EnumAttr.getEnum(1076494336)), 21, 7, 0);
this.putAttribute(XFA.FIELDTAG, XFA.RELEVANTTAG, new StringAttr("relevant", ""), 21, 5, 0);
this.putAttribute(XFA.FIELDTAG, XFA.ROTATETAG, new Rotate("rotate", "0"), 21, 5, 0);
this.putElement(XFA.FIELDTAG, XFA.ASSISTTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.FIELDTAG, XFA.BINDTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.FIELDTAG, XFA.BINDITEMSTAG, ChildReln.getZeroOrMore(), 24, 5, 0);
this.putElement(XFA.FIELDTAG, XFA.BORDERTAG, ChildReln.getZeroOrOne(), 21, 3, 0);
this.putElement(XFA.FIELDTAG, XFA.CALCULATETAG, ChildReln.getZeroOrOne(), 21, 7, 0);
this.putElement(XFA.FIELDTAG, XFA.CAPTIONTAG, ChildReln.getZeroOrOne(), 21, 1, 0);
this.putElement(XFA.FIELDTAG, XFA.CONNECTTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.FIELDTAG, XFA.DESCTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.FIELDTAG, XFA.EVENTTAG, ChildReln.getZeroOrMore(), 21, 7, 0);
this.putElement(XFA.FIELDTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.FIELDTAG, XFA.FONTTAG, ChildReln.getZeroOrOne(), 21, 7, 0);
this.putElement(XFA.FIELDTAG, XFA.FORMATTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.FIELDTAG, XFA.ITEMSTAG, this.moZeroOrMore2, 21, 7, 0);
this.putElement(XFA.FIELDTAG, XFA.KEEPTAG, ChildReln.getZeroOrOne(), 28, 1, 0);
this.putElement(XFA.FIELDTAG, XFA.MARGINTAG, ChildReln.getZeroOrOne(), 21, 1, 0);
this.putElement(XFA.FIELDTAG, XFA.PARATAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.FIELDTAG, XFA.SETPROPERTYTAG, ChildReln.getZeroOrMore(), 24, 5, 0);
this.putElement(XFA.FIELDTAG, XFA.TRAVERSALTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.FIELDTAG, XFA.UITAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.FIELDTAG, XFA.VALIDATETAG, ChildReln.getZeroOrOne(), 21, 7, 0);
this.putElement(XFA.FIELDTAG, XFA.VALUETAG, ChildReln.getZeroOrOne(), 21, 7, 0);
this.putElement(XFA.FIELDTAG, XFA.RENDERASTAG, ChildReln.getZeroOrOne(), 26, 5, 0);
this.putPropAttrs(XFA.HYPHENATIONTAG);
this.putAttribute(XFA.HYPHENATIONTAG, EnumValue.getEnum(XFA.HYPHENATETAG, EnumAttr.getEnum(1074003968)), 28, 1, 0);
this.putAttribute(XFA.HYPHENATIONTAG, XFA.WORDCHARACTERCOUNTTAG, new Int("wordCharacterCount", 7), 28, 1, 0);
this.putAttribute(XFA.HYPHENATIONTAG, XFA.REMAINCHARACTERCOUNTTAG, new Int("remainCharacterCount", 3), 28, 1, 0);
this.putAttribute(XFA.HYPHENATIONTAG, XFA.PUSHCHARACTERCOUNTTAG, new Int("pushCharacterCount", 3), 28, 1, 0);
this.putAttribute(XFA.HYPHENATIONTAG, XFA.LADDERCOUNTTAG, new Int("ladderCount", 2), 28, 1, 0);
this.putAttribute(XFA.HYPHENATIONTAG, EnumValue.getEnum(XFA.EXCLUDEALLCAPSTAG, EnumAttr.getEnum(1074003968)), 28, 1, 0);
this.putAttribute(XFA.HYPHENATIONTAG, EnumValue.getEnum(XFA.EXCLUDEINITIALCAPTAG, EnumAttr.getEnum(1074003968)), 28, 1, 0);
this.putPropAttrs(XFA.LINETAG);
this.putAttribute(XFA.LINETAG, EnumValue.getEnum(XFA.HANDTAG, EnumAttr.getEnum(1507330)), 21, 5, 0);
this.putAttribute(XFA.LINETAG, EnumValue.getEnum(XFA.SLOPETAG, EnumAttr.getEnum(3211265)), 21, 5, 0);
this.putElement(XFA.LINETAG, XFA.EDGETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.MANIFESTTAG);
this.putAttribute(XFA.MANIFESTTAG, XFA.NAMETAG, new StringAttr("name", ""), 24, 5, 0);
this.putAttribute(XFA.MANIFESTTAG, EnumValue.getEnum(XFA.ACTIONTAG, EnumAttr.getEnum(7077888)), 24, 5, 0);
this.putElement(XFA.MANIFESTTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 24, 5, 0);
this.putElement(XFA.MANIFESTTAG, XFA.REFTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putPropAttrs(XFA.MEDIUMTAG);
this.putAttribute(XFA.MEDIUMTAG, XFA.IMAGINGBBOXTAG, new ImagingBBoxEnum("imagingBBox", "none"), 21, 1, 0);
this.putAttribute(XFA.MEDIUMTAG, XFA.LONGTAG, new Measurement("long", "0"), 21, 1, 0);
this.putAttribute(XFA.MEDIUMTAG, XFA.SHORTTAG, new Measurement("short", "0"), 21, 1, 0);
this.putAttribute(XFA.MEDIUMTAG, EnumValue.getEnum(XFA.ORIENTATIONTAG, EnumAttr.getEnum(2490368)), 21, 1, 0);
this.putAttribute(XFA.MEDIUMTAG, XFA.STOCKTAG, null, 21, 1, 0);
this.putAttribute(XFA.MEDIUMTAG, EnumValue.getEnum(XFA.TRAYINTAG, EnumAttr.getEnum(3801088)), 21, 1, 0);
this.putAttribute(XFA.MEDIUMTAG, EnumValue.getEnum(XFA.TRAYOUTTAG, EnumAttr.getEnum(3866624)), 21, 1, 0);
this.putPropAttrs(XFA.OIDSTAG);
this.putAttribute(XFA.OIDSTAG, EnumValue.getEnum(XFA.TYPETAG, EnumAttr.getEnum(-2140930047)), 25, 8, 0);
this.putElement(XFA.OIDSTAG, XFA.OIDTAG, ChildReln.getZeroOrMore(), 25, 8, 0);
this.putChildAttrs(XFA.OIDTAG);
this.putElement(XFA.OIDTAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 25, 8, 0);
this.putPropAttrs(XFA.PAGEAREATAG);
this.putAttribute(XFA.PAGEAREATAG, XFA.NAMETAG, null, 21, 1, 0);
this.putAttribute(XFA.PAGEAREATAG, EnumValue.getEnum(XFA.PAGEPOSITIONTAG, EnumAttr.getEnum(7340036)), 25, 1, 0);
this.putAttribute(XFA.PAGEAREATAG, EnumValue.getEnum(XFA.ODDOREVENTAG, EnumAttr.getEnum(7405570)), 25, 1, 0);
this.putAttribute(XFA.PAGEAREATAG, EnumValue.getEnum(XFA.BLANKORNOTBLANKTAG, EnumAttr.getEnum(7471106)), 25, 5, 0);
this.putAttribute(XFA.PAGEAREATAG, XFA.INITIALNUMBERTAG, new Int("initialNumber", 1), 21, 1, 0);
this.putAttribute(XFA.PAGEAREATAG, XFA.NUMBEREDTAG, new Int("numbered", 1), 21, 1, 0);
this.putAttribute(XFA.PAGEAREATAG, XFA.RELEVANTTAG, new StringAttr("relevant", ""), 21, 5, 0);
this.putElement(XFA.PAGEAREATAG, XFA.CONTENTAREATAG, ChildReln.getZeroOrMore(), 21, 1, 0);
this.putElement(XFA.PAGEAREATAG, XFA.DESCTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.PAGEAREATAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.PAGEAREATAG, XFA.MEDIUMTAG, ChildReln.getZeroOrOne(), 21, 1, 0);
this.putElement(XFA.PAGEAREATAG, XFA.OCCURTAG, ChildReln.getZeroOrOne(), 21, 1, 0);
this.putElement(XFA.PAGEAREATAG, XFA.AREATAG, ChildReln.getZeroOrMore(), 21, 1, 0);
this.putElement(XFA.PAGEAREATAG, XFA.DRAWTAG, ChildReln.getZeroOrMore(), 21, 1, 0);
this.putElement(XFA.PAGEAREATAG, XFA.EXCLGROUPTAG, ChildReln.getZeroOrMore(), 21, 1, 0);
this.putElement(XFA.PAGEAREATAG, XFA.FIELDTAG, ChildReln.getZeroOrMore(), 21, 3, 0);
this.putElement(XFA.PAGEAREATAG, XFA.SUBFORMTAG, ChildReln.getZeroOrMore(), 21, 3, 0);
this.putPropAttrs(XFA.PAGESETTAG);
this.putAttribute(XFA.PAGESETTAG, XFA.NAMETAG, null, 21, 1, 0);
this.putAttribute(XFA.PAGESETTAG, XFA.RELEVANTTAG, new StringAttr("relevant", ""), 21, 5, 0);
this.putAttribute(XFA.PAGESETTAG, EnumValue.getEnum(XFA.RELATIONTAG, EnumAttr.getEnum(-2140209152)), 25, 1, 0);
this.putAttribute(XFA.PAGESETTAG, EnumValue.getEnum(XFA.DUPLEXIMPOSITIONTAG, EnumAttr.getEnum(9109504)), 31, 1, 0);
this.putElement(XFA.PAGESETTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.PAGESETTAG, XFA.OCCURTAG, ChildReln.getZeroOrOne(), 21, 1, 0);
this.putElement(XFA.PAGESETTAG, XFA.PAGEAREATAG, ChildReln.getZeroOrMore(), 21, 1, 0);
this.putElement(XFA.PAGESETTAG, XFA.PAGESETTAG, ChildReln.getZeroOrMore(), 21, 1, 0);
this.putPropAttrs(XFA.PARATAG);
this.putAttribute(XFA.PARATAG, EnumValue.getEnum(XFA.HALIGNTAG, EnumAttr.getEnum(1441792)), 21, 5, 0);
this.putAttribute(XFA.PARATAG, EnumValue.getEnum(XFA.VALIGNTAG, EnumAttr.getEnum(4063232)), 21, 5, 0);
this.putAttribute(XFA.PARATAG, XFA.LINEHEIGHTTAG, new Measurement("lineHeight", "0pt"), 21, 5, 0);
this.putAttribute(XFA.PARATAG, XFA.MARGINLEFTTAG, new Measurement("marginLeft", "0"), 21, 5, 0);
this.putAttribute(XFA.PARATAG, XFA.MARGINRIGHTTAG, new Measurement("marginRight", "0"), 21, 5, 0);
this.putAttribute(XFA.PARATAG, XFA.ORPHANSTAG, new Int("orphans", 0), 28, 5, 0);
this.putAttribute(XFA.PARATAG, XFA.PRESERVETAG, new StringAttr("preserve", "0"), 21, 5, 0);
this.putAttribute(XFA.PARATAG, XFA.RADIXOFFSETTAG, new Measurement("radixOffset", "0"), 21, 5, 0);
this.putAttribute(XFA.PARATAG, XFA.SPACEABOVETAG, new Measurement("spaceAbove", "0"), 21, 5, 0);
this.putAttribute(XFA.PARATAG, XFA.SPACEBELOWTAG, new Measurement("spaceBelow", "0"), 21, 5, 0);
this.putAttribute(XFA.PARATAG, XFA.TABSDEFAULTTAG, null, 21, 5, 0);
this.putAttribute(XFA.PARATAG, XFA.TABSTOPSTAG, null, 21, 5, 0);
this.putAttribute(XFA.PARATAG, XFA.TEXTINDENTTAG, new Measurement("textIndent", "0"), 21, 5, 0);
this.putAttribute(XFA.PARATAG, XFA.WIDOWSTAG, new Int("widows", 0), 28, 5, 0);
this.putAttribute(XFA.PARATAG, XFA.WORDSPACINGOPTIMUMTAG, new StringAttr("wordSpacingOptimum", "100%"), 28, 5, 0);
this.putAttribute(XFA.PARATAG, XFA.WORDSPACINGMINIMUMTAG, new StringAttr("wordSpacingMinimum", "100%"), 28, 5, 0);
this.putAttribute(XFA.PARATAG, XFA.WORDSPACINGMAXIMUMTAG, new StringAttr("wordSpacingMaximum", "100%"), 28, 5, 0);
this.putElement(XFA.PARATAG, XFA.HYPHENATIONTAG, ChildReln.getZeroOrOne(), 28, 5, 0);
this.putPropAttrs(XFA.REASONSTAG);
this.putAttribute(XFA.REASONSTAG, EnumValue.getEnum(XFA.TYPETAG, EnumAttr.getEnum(-2140930047)), 25, 8, 0);
this.putElement(XFA.REASONSTAG, XFA.REASONTAG, ChildReln.getZeroOrMore(), 25, 8, 0);
this.putChildAttrs(XFA.REASONTAG);
this.putElement(XFA.REASONTAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 25, 8, 0);
this.putPropAttrs(XFA.REFTAG);
this.putElement(XFA.REFTAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.addForeignSchema(SVGSchema.getSVGSchema());
this.putAttribute(XFA.RENDERASTAG, XFA.APIVERSIONTAG, null, 0, 63, 0);
this.putPropAttrs(XFA.SIGNDATATAG);
this.putAttribute(XFA.SIGNDATATAG, XFA.REFTAG, null, 24, 8, 0);
this.putAttribute(XFA.SIGNDATATAG, XFA.TARGETTAG, null, 24, 8, 0);
this.putAttribute(XFA.SIGNDATATAG, EnumValue.getEnum(XFA.OPERATIONTAG, EnumAttr.getEnum(-2140995584)), 24, 8, 0);
this.putElement(XFA.SIGNDATATAG, XFA.MANIFESTTAG, ChildReln.getZeroOrOne(), 24, 8, 0);
this.putElement(XFA.SIGNDATATAG, XFA.FILTERTAG, ChildReln.getZeroOrOne(), 24, 8, 0);
this.putPropAttrs(XFA.SIGNATURETAG);
this.putAttribute(XFA.SIGNATURETAG, EnumValue.getEnum(XFA.TYPETAG, EnumAttr.getEnum(-2141716480)), 21, 8, 0);
this.putElement(XFA.SIGNATURETAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.SIGNATURETAG, XFA.BORDERTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.SIGNATURETAG, XFA.MARGINTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.SIGNATURETAG, XFA.MANIFESTTAG, ChildReln.getZeroOrOne(), 25, 8, 0);
this.putElement(XFA.SIGNATURETAG, XFA.FILTERTAG, ChildReln.getZeroOrOne(), 25, 8, 0);
this.putPropAttrs(XFA.SIGNINGTAG);
this.putAttribute(XFA.SIGNINGTAG, EnumValue.getEnum(XFA.TYPETAG, EnumAttr.getEnum(-2140930047)), 25, 8, 0);
this.putElement(XFA.SIGNINGTAG, XFA.CERTIFICATETAG, ChildReln.getZeroOrMore(), 25, 8, 0);
this.putPropAttrs(XFA.SPEAKTAG);
this.putAttribute(XFA.SPEAKTAG, EnumValue.getEnum(XFA.DISABLETAG, EnumAttr.getEnum(1074003968)), 21, 5, 0);
this.putAttribute(XFA.SPEAKTAG, EnumValue.getEnum(XFA.PRIORITYTAG, EnumAttr.getEnum(6160384)), 21, 5, 0);
this.putAttribute(XFA.SPEAKTAG, XFA.RIDTAG, null, 27, 5, 0);
this.putElement(XFA.SPEAKTAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putChildAttrs(XFA.SUBFORMTAG);
this.putAttribute(XFA.SUBFORMTAG, XFA.LOCALETAG, null, 21, 1, 0);
this.putAttribute(XFA.SUBFORMTAG, EnumValue.getEnum(XFA.ANCHORTYPETAG, EnumAttr.getEnum(131072)), 21, 1, 0);
this.putAttribute(XFA.SUBFORMTAG, EnumValue.getEnum(XFA.ALLOWMACROTAG, EnumAttr.getEnum(1074003968)), 21, 1, 0);
this.putAttribute(XFA.SUBFORMTAG, XFA.COLSPANTAG, new Int("colSpan", 1), 21, 1, 0);
this.putAttribute(XFA.SUBFORMTAG, XFA.COLUMNWIDTHSTAG, new StringAttr("columnWidths", ""), 21, 1, 0);
this.putAttribute(XFA.SUBFORMTAG, EnumValue.getEnum(XFA.LAYOUTTAG, EnumAttr.getEnum(1769475)), 21, 1, 0);
this.putAttribute(XFA.SUBFORMTAG, XFA.XTAG, new Measurement("x", "0"), 21, 1, 0);
this.putAttribute(XFA.SUBFORMTAG, XFA.YTAG, new Measurement("y", "0"), 21, 1, 0);
this.putAttribute(XFA.SUBFORMTAG, XFA.HTAG, new Measurement("h", "0"), 21, 1, 0);
this.putAttribute(XFA.SUBFORMTAG, XFA.WTAG, new Measurement("w", "0"), 21, 1, 0);
this.putAttribute(XFA.SUBFORMTAG, EnumValue.getEnum(XFA.HALIGNTAG, EnumAttr.getEnum(1441792)), 21, 5, 0);
this.putAttribute(XFA.SUBFORMTAG, EnumValue.getEnum(XFA.VALIGNTAG, EnumAttr.getEnum(4063232)), 21, 5, 0);
this.putAttribute(XFA.SUBFORMTAG, XFA.MINHTAG, new Measurement("minH", "0"), 21, 1, 0);
this.putAttribute(XFA.SUBFORMTAG, XFA.MINWTAG, new Measurement("minW", "0"), 21, 1, 0);
this.putAttribute(XFA.SUBFORMTAG, XFA.MAXHTAG, new Measurement("maxH", "0"), 21, 1, 0);
this.putAttribute(XFA.SUBFORMTAG, XFA.MAXWTAG, new Measurement("maxW", "0"), 21, 1, 0);
this.putAttribute(XFA.SUBFORMTAG, EnumValue.getEnum(XFA.PRESENCETAG, EnumAttr.getEnum(1076494336)), 21, 5, 0);
this.putAttribute(XFA.SUBFORMTAG, XFA.RELEVANTTAG, new StringAttr("relevant", ""), 21, 5, 0);
this.putAttribute(XFA.SUBFORMTAG, EnumValue.getEnum(XFA.SCOPETAG, EnumAttr.getEnum(5963776)), 21, 5, 0);
this.putAttribute(XFA.SUBFORMTAG, EnumValue.getEnum(XFA.RESTORESTATETAG, EnumAttr.getEnum(7864320)), 25, 5, 0);
this.putAttribute(XFA.SUBFORMTAG, EnumValue.getEnum(XFA.ACCESSTAG, EnumAttr.getEnum(65537)), 28, 5, 0);
this.putAttribute(XFA.SUBFORMTAG, EnumValue.getEnum(XFA.MERGEMODETAG, EnumAttr.getEnum(9175040)), 31, 1, 0);
this.putElement(XFA.SUBFORMTAG, XFA.BINDTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.SUBFORMTAG, XFA.BORDERTAG, ChildReln.getZeroOrOne(), 21, 1, 0);
this.putElement(XFA.SUBFORMTAG, XFA.BREAKTAG, ChildReln.getZeroOrOne(), 21, 1, 0);
this.putElement(XFA.SUBFORMTAG, XFA.BREAKBEFORETAG, ChildReln.getZeroOrMore(), 24, 1, 0);
this.putElement(XFA.SUBFORMTAG, XFA.BREAKAFTERTAG, ChildReln.getZeroOrMore(), 24, 1, 0);
this.putElement(XFA.SUBFORMTAG, XFA.BOOKENDTAG, ChildReln.getZeroOrOne(), 24, 1, 0);
this.putElement(XFA.SUBFORMTAG, XFA.OVERFLOWTAG, ChildReln.getZeroOrOne(), 24, 1, 0);
this.putElement(XFA.SUBFORMTAG, XFA.DESCTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.SUBFORMTAG, XFA.EVENTTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.SUBFORMTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.SUBFORMTAG, XFA.VARIABLESTAG, ChildReln.getZeroOrOne(), 21, 1, 0);
this.putElement(XFA.SUBFORMTAG, XFA.KEEPTAG, ChildReln.getZeroOrOne(), 21, 1, 0);
this.putElement(XFA.SUBFORMTAG, XFA.MARGINTAG, ChildReln.getZeroOrOne(), 21, 1, 0);
this.putElement(XFA.SUBFORMTAG, XFA.OCCURTAG, ChildReln.getZeroOrOne(), 21, 1, 0);
this.putElement(XFA.SUBFORMTAG, XFA.PARATAG, ChildReln.getZeroOrOne(), 21, 1, 33);
this.putElement(XFA.SUBFORMTAG, XFA.TRAVERSALTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.SUBFORMTAG, XFA.VALIDATETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.SUBFORMTAG, XFA.CALCULATETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.SUBFORMTAG, XFA.AREATAG, ChildReln.getZeroOrMore(), 21, 1, 0);
this.putElement(XFA.SUBFORMTAG, XFA.DRAWTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.SUBFORMTAG, XFA.EXCLGROUPTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.SUBFORMTAG, XFA.EXOBJECTTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.SUBFORMTAG, XFA.FIELDTAG, ChildReln.getZeroOrMore(), 21, 7, 0);
this.putElement(XFA.SUBFORMTAG, XFA.PROTOTAG, ChildReln.getZeroOrMore(), 21, 1, 0);
this.putElement(XFA.SUBFORMTAG, XFA.SETPROPERTYTAG, ChildReln.getZeroOrMore(), 24, 5, 0);
this.putElement(XFA.SUBFORMTAG, XFA.SUBFORMTAG, ChildReln.getZeroOrMore(), 21, 7, 0);
this.putElement(XFA.SUBFORMTAG, XFA.SUBFORMSETTAG, ChildReln.getZeroOrMore(), 21, 1, 0);
this.putElement(XFA.SUBFORMTAG, XFA.PAGESETTAG, ChildReln.getZeroOrOne(), 21, 1, 0);
this.putElement(XFA.SUBFORMTAG, XFA.CONNECTTAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.SUBFORMTAG, XFA.ASSISTTAG, ChildReln.getZeroOrOne(), 22, 5, 0);
this.putPropAttrs(XFA.SUBFORMSETTAG);
this.putAttribute(XFA.SUBFORMSETTAG, XFA.NAMETAG, null, 21, 1, 0);
this.putAttribute(XFA.SUBFORMSETTAG, EnumValue.getEnum(XFA.RELATIONTAG, EnumAttr.getEnum(-2144600064)), 21, 1, 0);
this.putAttribute(XFA.SUBFORMSETTAG, XFA.RELEVANTTAG, new StringAttr("relevant", ""), 21, 5, 0);
this.putElement(XFA.SUBFORMSETTAG, XFA.BREAKTAG, ChildReln.getZeroOrOne(), 21, 16, 0);
this.putElement(XFA.SUBFORMSETTAG, XFA.BREAKBEFORETAG, ChildReln.getZeroOrMore(), 24, 16, 0);
this.putElement(XFA.SUBFORMSETTAG, XFA.BREAKAFTERTAG, ChildReln.getZeroOrMore(), 24, 16, 0);
this.putElement(XFA.SUBFORMSETTAG, XFA.BOOKENDTAG, ChildReln.getZeroOrOne(), 24, 5, 0);
this.putElement(XFA.SUBFORMSETTAG, XFA.OVERFLOWTAG, ChildReln.getZeroOrOne(), 24, 5, 0);
this.putElement(XFA.SUBFORMSETTAG, XFA.OCCURTAG, ChildReln.getZeroOrOne(), 21, 1, 0);
this.putElement(XFA.SUBFORMSETTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.SUBFORMSETTAG, XFA.SUBFORMTAG, ChildReln.getZeroOrMore(), 21, 3, 0);
this.putElement(XFA.SUBFORMSETTAG, XFA.SUBFORMSETTAG, ChildReln.getZeroOrMore(), 21, 1, 0);
this.putElement(XFA.SUBFORMSETTAG, XFA.DESCTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.SUBMITTAG);
this.putAttribute(XFA.SUBMITTAG, EnumValue.getEnum(XFA.EMBEDPDFTAG, EnumAttr.getEnum(1074003968)), 21, 5, 0);
this.putAttribute(XFA.SUBMITTAG, XFA.TARGETTAG, new StringAttr("target", ""), 21, 5, 0);
this.putAttribute(XFA.SUBMITTAG, EnumValue.getEnum(XFA.FORMATTAG, EnumAttr.getEnum(-2142502911)), 21, 5, 0);
this.putAttribute(XFA.SUBMITTAG, XFA.XDPCONTENTTAG, new StringAttr("xdpContent", ""), 21, 5, 0);
this.putAttribute(XFA.SUBMITTAG, XFA.TEXTENCODINGTAG, new StringAttr("textEncoding", ""), 21, 5, 0);
this.putElement(XFA.SUBMITTAG, XFA.SIGNDATATAG, ChildReln.getZeroOrMore(), 25, 5, 0);
this.putElement(XFA.SUBMITTAG, XFA.ENCRYPTTAG, ChildReln.getZeroOrOne(), 25, 5, 0);
this.putAttribute(XFA.TEMPLATETAG, EnumValue.getEnum(XFA.BASEPROFILETAG, EnumAttr.getEnum(7602176)), 25, 5, 0);
this.putElement(XFA.TEMPLATETAG, XFA.SUBFORMTAG, ChildReln.getZeroOrMore(), 21, 7, 0);
this.putElement(XFA.TEMPLATETAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.TOOLTIPTAG);
this.putAttribute(XFA.TOOLTIPTAG, XFA.RIDTAG, null, 27, 5, 0);
this.putElement(XFA.TOOLTIPTAG, XFA.TEXTNODETAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.TRAVERSALTAG);
this.putAttribute(XFA.TRAVERSALTAG, EnumValue.getEnum(XFA.PASSTHROUGHTAG, EnumAttr.getEnum(1074003968)), 21, 0, 26);
this.putElement(XFA.TRAVERSALTAG, XFA.TRAVERSETAG, ChildReln.getZeroOrMore(), 21, 5, 0);
this.putElement(XFA.TRAVERSALTAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.TRAVERSETAG);
this.putAttribute(XFA.TRAVERSETAG, EnumValue.getEnum(XFA.DELEGATETAG, EnumAttr.getEnum(1074003968)), 21, 0, 26);
this.putAttribute(XFA.TRAVERSETAG, EnumValue.getEnum(XFA.OPERATIONTAG, EnumAttr.getEnum(-2145124346)), 21, 5, 0);
this.putAttribute(XFA.TRAVERSETAG, XFA.REFTAG, null, 21, 5, 0);
this.putElement(XFA.TRAVERSETAG, XFA.SCRIPTTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putElement(XFA.TRAVERSETAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.VALUETAG);
this.putAttribute(XFA.VALUETAG, EnumValue.getEnum(XFA.OVERRIDETAG, EnumAttr.getEnum(1074003968)), 21, 5, 0);
this.putAttribute(XFA.VALUETAG, XFA.RELEVANTTAG, new StringAttr("relevant", ""), 24, 5, 0);
this.putElement(XFA.VALUETAG, XFA.ARCTAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.VALUETAG, XFA.BOOLEANTAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.VALUETAG, XFA.DATETAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.VALUETAG, XFA.DATETIMETAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.VALUETAG, XFA.DECIMALTAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.VALUETAG, XFA.EXDATATAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.VALUETAG, XFA.FLOATTAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.VALUETAG, XFA.IMAGETAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.VALUETAG, XFA.INTEGERTAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.VALUETAG, XFA.LINETAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.VALUETAG, XFA.RECTANGLETAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.VALUETAG, XFA.TEXTTAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putElement(XFA.VALUETAG, XFA.TIMETAG, ChildReln.getOneOfChild(), 21, 5, 0);
this.putPropAttrs(XFA.RECTANGLETAG);
this.putAttribute(XFA.RECTANGLETAG, EnumValue.getEnum(XFA.HANDTAG, EnumAttr.getEnum(1507330)), 21, 5, 0);
this.putElement(XFA.RECTANGLETAG, XFA.EDGETAG, this.moZeroOrMore4, 21, 5, 0);
this.putElement(XFA.RECTANGLETAG, XFA.CORNERTAG, this.moZeroOrMore4, 21, 5, 0);
this.putElement(XFA.RECTANGLETAG, XFA.FILLTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.BARCODETAG);
this.putAttribute(XFA.BARCODETAG, XFA.DATACOLUMNCOUNTTAG, null, 21, 5, 0);
this.putAttribute(XFA.BARCODETAG, XFA.DATALENGTHTAG, null, 21, 5, 0);
this.putAttribute(XFA.BARCODETAG, EnumValue.getEnum(XFA.DATAPREPTAG, EnumAttr.getEnum(6422528)), 21, 5, 0);
this.putAttribute(XFA.BARCODETAG, XFA.DATAROWCOUNTTAG, null, 21, 5, 0);
this.putAttribute(XFA.BARCODETAG, XFA.CHARENCODINGTAG, new StringAttr("charEncoding", "UTF-8"), 24, 5, 0);
this.putAttribute(XFA.BARCODETAG, EnumValue.getEnum(XFA.CHECKSUMTAG, EnumAttr.getEnum(5701633)), 21, 5, 0);
this.putAttribute(XFA.BARCODETAG, XFA.ENDCHARTAG, null, 21, 5, 0);
this.putAttribute(XFA.BARCODETAG, XFA.ERRORCORRECTIONLEVELTAG, new StringAttr("errorCorrectionLevel", "0"), 21, 5, 0);
this.putAttribute(XFA.BARCODETAG, XFA.MODULEHEIGHTTAG, new Measurement("moduleHeight", "5mm"), 21, 5, 0);
this.putAttribute(XFA.BARCODETAG, XFA.MODULEWIDTHTAG, new Measurement("moduleWidth", "0.25mm"), 21, 5, 0);
this.putAttribute(XFA.BARCODETAG, EnumValue.getEnum(XFA.PRINTCHECKDIGITTAG, EnumAttr.getEnum(1074003968)), 21, 5, 0);
this.putAttribute(XFA.BARCODETAG, XFA.ROWCOLUMNRATIOTAG, null, 21, 5, 0);
this.putAttribute(XFA.BARCODETAG, XFA.STARTCHARTAG, null, 21, 5, 0);
this.putAttribute(XFA.BARCODETAG, EnumValue.getEnum(XFA.TEXTLOCATIONTAG, EnumAttr.getEnum(5636098)), 21, 5, 0);
this.putAttribute(XFA.BARCODETAG, EnumValue.getEnum(XFA.TRUNCATETAG, EnumAttr.getEnum(1074003968)), 21, 5, 0);
this.putAttribute(XFA.BARCODETAG, XFA.TYPETAG, new StringAttr("type", ""), 21, 5, 0);
this.putAttribute(XFA.BARCODETAG, EnumValue.getEnum(XFA.UPSMODETAG, EnumAttr.getEnum(8126464)), 26, 5, 0);
this.putAttribute(XFA.BARCODETAG, XFA.WIDENARROWRATIOTAG, new StringAttr("wideNarrowRatio", "3:1"), 21, 5, 0);
this.putElement(XFA.BARCODETAG, XFA.ENCRYPTTAG, ChildReln.getZeroOrOne(), 24, 5, 0);
this.putElement(XFA.BARCODETAG, XFA.EXTRASTAG, ChildReln.getZeroOrOne(), 21, 5, 0);
this.putPropAttrs(XFA.ENCRYPTTAG);
this.putElement(XFA.ENCRYPTTAG, XFA.CERTIFICATETAG, ChildReln.getZeroOrOne(), 24, 5, 0);
}
@Override
protected Element newElement(int eTag, Element parent, Node prevSibling) {
if (eTag == XFA.PROTOTAG) {
return new Proto(parent, prevSibling);
}
if (eTag == XFA.BINDTAG) {
return new Bind(parent, prevSibling);
}
if (eTag == XFA.BINDITEMSTAG) {
return new BindItems(parent, prevSibling);
}
if (eTag == XFA.SETPROPERTYTAG) {
return new SetProperty(parent, prevSibling);
}
if (eTag == XFA.DATETIMEEDITTAG) {
return new DateTimeEdit(parent, prevSibling);
}
if (eTag == XFA.COLORTAG) {
return new Color(parent, prevSibling);
}
if (eTag == XFA.CONNECTTAG) {
return new Connect(parent, prevSibling);
}
if (eTag == XFA.DATETAG) {
return new DateValue(parent, prevSibling);
}
if (eTag == XFA.DATETIMETAG) {
return new DateTimeValue(parent, prevSibling);
}
if (eTag == XFA.DECIMALTAG) {
return new DecimalValue(parent, prevSibling);
}
if (eTag == XFA.FLOATTAG) {
return new FloatValue(parent, prevSibling);
}
if (eTag == XFA.INTEGERTAG) {
return new IntegerValue(parent, prevSibling);
}
if (eTag == XFA.TEXTTAG) {
return new TextValue(parent, prevSibling);
}
if (eTag == XFA.TIMETAG) {
return new TimeValue(parent, prevSibling);
}
if (eTag == XFA.EXDATATAG) {
return new ExDataValue(parent, prevSibling);
}
if (eTag == XFA.FILLTAG) {
return new Fill(parent, prevSibling);
}
if (eTag == XFA.ITEMSTAG) {
return new Items(parent, prevSibling);
}
if (eTag == XFA.KEEPTAG) {
return new Keep(parent, prevSibling);
}
if (eTag == XFA.MARGINTAG) {
return new Margin(parent, prevSibling);
}
if (eTag == XFA.OCCURTAG) {
return new Occur(parent, prevSibling);
}
if (eTag == XFA.TEXTEDITTAG) {
return new TextEdit(parent, prevSibling);
}
if (eTag == XFA.UITAG) {
return new UI(parent, prevSibling);
}
if (eTag == XFA.IMAGETAG) {
return new ImageValue(parent, prevSibling);
}
if (eTag == XFA.PICTURETAG) {
return new Picture(parent, prevSibling);
}
if (eTag == XFA.SCRIPTTAG) {
return new Script(parent, prevSibling);
}
if (eTag == XFA.LINEARTAG) {
return new Linear(parent, prevSibling);
}
if (eTag == XFA.BOOLEANTAG) {
return new BooleanValue(parent, prevSibling);
}
if (eTag == XFA.VARIABLESTAG) {
return new Variables(parent, prevSibling);
}
if (eTag == XFA.AREATAG) {
return new AreaContainer(parent, prevSibling);
}
if (eTag == XFA.BORDERTAG) {
return new Border(parent, prevSibling);
}
if (eTag == XFA.CAPTIONTAG) {
return new Caption(parent, prevSibling);
}
if (eTag == XFA.CONTENTAREATAG) {
return new ContentArea(parent, prevSibling);
}
if (eTag == XFA.DRAWTAG) {
return new Draw(parent, prevSibling);
}
if (eTag == XFA.EVENTTAG) {
return new EventTag(parent, prevSibling);
}
if (eTag == XFA.EXCLGROUPTAG) {
return new ExclGroup(parent, prevSibling);
}
if (eTag == XFA.FIELDTAG) {
return new Field(parent, prevSibling);
}
if (eTag == XFA.MANIFESTTAG) {
return new Manifest(parent, prevSibling);
}
if (eTag == XFA.PAGEAREATAG) {
return new PageArea(parent, prevSibling);
}
if (eTag == XFA.PAGESETTAG) {
return new PageSet(parent, prevSibling);
}
if (eTag == XFA.SUBFORMTAG) {
return new Subform(parent, prevSibling);
}
if (eTag == XFA.SUBFORMSETTAG) {
return new SubformSet(parent, prevSibling);
}
if (eTag == XFA.TEMPLATETAG) {
return new TemplateModel(parent, prevSibling);
}
if (eTag == XFA.TRAVERSETAG) {
return new Traverse(parent, prevSibling);
}
if (eTag == XFA.VALUETAG) {
return new Value(parent, prevSibling);
}
if (eTag == XFA.RECTANGLETAG) {
return new RectangleValue(parent, prevSibling);
}
if (eTag == XFA.CALCULATETAG) {
return new Calculate(parent, prevSibling);
}
if (eTag == XFA.BUTTONTAG) {
return new Button(parent, prevSibling);
}
if (eTag == XFA.ASSISTTAG || eTag == XFA.CERTIFICATESTAG || eTag == XFA.SUBJECTDNSTAG || eTag == XFA.SUBJECTDNTAG || eTag == XFA.KEYUSAGETAG || eTag == XFA.DEFAULTUITAG || eTag == XFA.SOLIDTAG || eTag == XFA.BREAKTAG || eTag == XFA.CHOICELISTTAG || eTag == XFA.BREAKBEFORETAG || eTag == XFA.BREAKAFTERTAG || eTag == XFA.OVERFLOWTAG || eTag == XFA.BOOKENDTAG || eTag == XFA.FILTERTAG || eTag == XFA.MDPTAG || eTag == XFA.TIMESTAMPTAG || eTag == XFA.ENCODINGSTAG || eTag == XFA.ENCODINGTAG || eTag == XFA.DIGESTMETHODSTAG || eTag == XFA.DIGESTMETHODTAG || eTag == XFA.DESCTAG || eTag == XFA.FONTTAG || eTag == XFA.FORMATTAG || eTag == XFA.ISSUERSTAG || eTag == XFA.MESSAGETAG || eTag == XFA.IMAGEEDITTAG || eTag == XFA.NUMERICEDITTAG || eTag == XFA.PASSWORDEDITTAG || eTag == XFA.VALIDATETAG || eTag == XFA.PATTERNTAG || eTag == XFA.RADIALTAG || eTag == XFA.CORNERTAG || eTag == XFA.EDGETAG || eTag == XFA.EXTRASTAG || eTag == XFA.STIPPLETAG || eTag == XFA.ARCTAG || eTag == XFA.CHECKBUTTONTAG || eTag == XFA.COMBTAG || eTag == XFA.EXOBJECTTAG || eTag == XFA.EXECUTETAG || eTag == XFA.LINETAG || eTag == XFA.MEDIUMTAG || eTag == XFA.OIDSTAG || eTag == XFA.PARATAG || eTag == XFA.REASONSTAG || eTag == XFA.RENDERASTAG || eTag == XFA.SIGNDATATAG || eTag == XFA.SIGNATURETAG || eTag == XFA.SIGNINGTAG || eTag == XFA.SUBMITTAG || eTag == XFA.TRAVERSALTAG || eTag == XFA.BARCODETAG || eTag == XFA.ENCRYPTTAG || eTag == XFA.HYPHENATIONTAG) {
return new GenericNode(parent, prevSibling);
}
if (eTag == XFA.CERTIFICATETAG || eTag == XFA.HANDLERTAG || eTag == XFA.OIDTAG || eTag == XFA.REASONTAG || eTag == XFA.REFTAG || eTag == XFA.SPEAKTAG || eTag == XFA.TOOLTIPTAG || eTag == XFA.APPEARANCEFILTERTAG || eTag == XFA.LOCKDOCUMENTTAG) {
return new GenericTextContainer(parent, prevSibling);
}
return null;
}
}