KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > poi > hwpf > model > types > SEPAbstractType


1
2 /* ====================================================================
3    Copyright 2002-2004 Apache Software Foundation
4
5    Licensed under the Apache License, Version 2.0 (the "License");
6    you may not use this file except in compliance with the License.
7    You may obtain a copy of the License at
8
9        http://www.apache.org/licenses/LICENSE-2.0
10
11    Unless required by applicable law or agreed to in writing, software
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16 ==================================================================== */

17         
18
19
20 package org.apache.poi.hwpf.model.types;
21
22
23
24 import org.apache.poi.util.BitField;
25 import org.apache.poi.util.LittleEndian;
26 import org.apache.poi.util.StringUtil;
27 import org.apache.poi.util.HexDump;
28 import org.apache.poi.hdf.model.hdftypes.HDFType;
29 import org.apache.poi.hwpf.usermodel.*;
30
31 /**
32  * Section Properties.
33  * NOTE: This source is automatically generated please do not modify this file. Either subclass or
34  * remove the record in src/records/definitions.
35
36  * @author S. Ryan Ackley
37  */

38 public abstract class SEPAbstractType
39     implements HDFType
40 {
41
42     protected byte field_1_bkc;
43     protected boolean field_2_fTitlePage;
44     protected boolean field_3_fAutoPgn;
45     protected byte field_4_nfcPgn;
46     protected boolean field_5_fUnlocked;
47     protected byte field_6_cnsPgn;
48     protected boolean field_7_fPgnRestart;
49     protected boolean field_8_fEndNote;
50     protected byte field_9_lnc;
51     protected byte field_10_grpfIhdt;
52     protected int field_11_nLnnMod;
53     protected int field_12_dxaLnn;
54     protected int field_13_dxaPgn;
55     protected int field_14_dyaPgn;
56     protected boolean field_15_fLBetween;
57     protected byte field_16_vjc;
58     protected int field_17_dmBinFirst;
59     protected int field_18_dmBinOther;
60     protected int field_19_dmPaperReq;
61     protected BorderCode field_20_brcTop;
62     protected BorderCode field_21_brcLeft;
63     protected BorderCode field_22_brcBottom;
64     protected BorderCode field_23_brcRight;
65     protected boolean field_24_fPropMark;
66     protected int field_25_ibstPropRMark;
67     protected DateAndTime field_26_dttmPropRMark;
68     protected int field_27_dxtCharSpace;
69     protected int field_28_dyaLinePitch;
70     protected int field_29_clm;
71     protected int field_30_unused2;
72     protected byte field_31_dmOrientPage;
73     protected byte field_32_iHeadingPgn;
74     protected int field_33_pgnStart;
75     protected int field_34_lnnMin;
76     protected int field_35_wTextFlow;
77     protected short field_36_unused3;
78     protected int field_37_pgbProp;
79     protected short field_38_unused4;
80     protected int field_39_xaPage;
81     protected int field_40_yaPage;
82     protected int field_41_xaPageNUp;
83     protected int field_42_yaPageNUp;
84     protected int field_43_dxaLeft;
85     protected int field_44_dxaRight;
86     protected int field_45_dyaTop;
87     protected int field_46_dyaBottom;
88     protected int field_47_dzaGutter;
89     protected int field_48_dyaHdrTop;
90     protected int field_49_dyaHdrBottom;
91     protected int field_50_ccolM1;
92     protected boolean field_51_fEvenlySpaced;
93     protected byte field_52_unused5;
94     protected int field_53_dxaColumns;
95     protected int[] field_54_rgdxaColumn;
96     protected int field_55_dxaColumnWidth;
97     protected byte field_56_dmOrientFirst;
98     protected byte field_57_fLayout;
99     protected short field_58_unused6;
100     protected byte[] field_59_olstAnm;
101
102
103     public SEPAbstractType()
104     {
105
106     }
107
108     /**
109      * Size of record (exluding 4 byte header)
110      */

111     public int getSize()
112     {
113         return 4 + + 1 + 0 + 0 + 1 + 0 + 1 + 0 + 0 + 1 + 1 + 2 + 4 + 2 + 2 + 0 + 1 + 2 + 2 + 2 + 4 + 4 + 4 + 4 + 0 + 2 + 4 + 4 + 4 + 2 + 2 + 1 + 1 + 2 + 2 + 2 + 2 + 2 + 2 + 4 + 4 + 4 + 4 + 4 + 4 + 4 + 4 + 4 + 4 + 4 + 2 + 0 + 1 + 4 + 356 + 4 + 1 + 1 + 2 + 212;
114     }
115
116
117
118     /**
119      * Get the bkc field for the SEP record.
120      */

121     public byte getBkc()
122     {
123         return field_1_bkc;
124     }
125
126     /**
127      * Set the bkc field for the SEP record.
128      */

129     public void setBkc(byte field_1_bkc)
130     {
131         this.field_1_bkc = field_1_bkc;
132     }
133
134     /**
135      * Get the fTitlePage field for the SEP record.
136      */

137     public boolean getFTitlePage()
138     {
139         return field_2_fTitlePage;
140     }
141
142     /**
143      * Set the fTitlePage field for the SEP record.
144      */

145     public void setFTitlePage(boolean field_2_fTitlePage)
146     {
147         this.field_2_fTitlePage = field_2_fTitlePage;
148     }
149
150     /**
151      * Get the fAutoPgn field for the SEP record.
152      */

153     public boolean getFAutoPgn()
154     {
155         return field_3_fAutoPgn;
156     }
157
158     /**
159      * Set the fAutoPgn field for the SEP record.
160      */

161     public void setFAutoPgn(boolean field_3_fAutoPgn)
162     {
163         this.field_3_fAutoPgn = field_3_fAutoPgn;
164     }
165
166     /**
167      * Get the nfcPgn field for the SEP record.
168      */

169     public byte getNfcPgn()
170     {
171         return field_4_nfcPgn;
172     }
173
174     /**
175      * Set the nfcPgn field for the SEP record.
176      */

177     public void setNfcPgn(byte field_4_nfcPgn)
178     {
179         this.field_4_nfcPgn = field_4_nfcPgn;
180     }
181
182     /**
183      * Get the fUnlocked field for the SEP record.
184      */

185     public boolean getFUnlocked()
186     {
187         return field_5_fUnlocked;
188     }
189
190     /**
191      * Set the fUnlocked field for the SEP record.
192      */

193     public void setFUnlocked(boolean field_5_fUnlocked)
194     {
195         this.field_5_fUnlocked = field_5_fUnlocked;
196     }
197
198     /**
199      * Get the cnsPgn field for the SEP record.
200      */

201     public byte getCnsPgn()
202     {
203         return field_6_cnsPgn;
204     }
205
206     /**
207      * Set the cnsPgn field for the SEP record.
208      */

209     public void setCnsPgn(byte field_6_cnsPgn)
210     {
211         this.field_6_cnsPgn = field_6_cnsPgn;
212     }
213
214     /**
215      * Get the fPgnRestart field for the SEP record.
216      */

217     public boolean getFPgnRestart()
218     {
219         return field_7_fPgnRestart;
220     }
221
222     /**
223      * Set the fPgnRestart field for the SEP record.
224      */

225     public void setFPgnRestart(boolean field_7_fPgnRestart)
226     {
227         this.field_7_fPgnRestart = field_7_fPgnRestart;
228     }
229
230     /**
231      * Get the fEndNote field for the SEP record.
232      */

233     public boolean getFEndNote()
234     {
235         return field_8_fEndNote;
236     }
237
238     /**
239      * Set the fEndNote field for the SEP record.
240      */

241     public void setFEndNote(boolean field_8_fEndNote)
242     {
243         this.field_8_fEndNote = field_8_fEndNote;
244     }
245
246     /**
247      * Get the lnc field for the SEP record.
248      */

249     public byte getLnc()
250     {
251         return field_9_lnc;
252     }
253
254     /**
255      * Set the lnc field for the SEP record.
256      */

257     public void setLnc(byte field_9_lnc)
258     {
259         this.field_9_lnc = field_9_lnc;
260     }
261
262     /**
263      * Get the grpfIhdt field for the SEP record.
264      */

265     public byte getGrpfIhdt()
266     {
267         return field_10_grpfIhdt;
268     }
269
270     /**
271      * Set the grpfIhdt field for the SEP record.
272      */

273     public void setGrpfIhdt(byte field_10_grpfIhdt)
274     {
275         this.field_10_grpfIhdt = field_10_grpfIhdt;
276     }
277
278     /**
279      * Get the nLnnMod field for the SEP record.
280      */

281     public int getNLnnMod()
282     {
283         return field_11_nLnnMod;
284     }
285
286     /**
287      * Set the nLnnMod field for the SEP record.
288      */

289     public void setNLnnMod(int field_11_nLnnMod)
290     {
291         this.field_11_nLnnMod = field_11_nLnnMod;
292     }
293
294     /**
295      * Get the dxaLnn field for the SEP record.
296      */

297     public int getDxaLnn()
298     {
299         return field_12_dxaLnn;
300     }
301
302     /**
303      * Set the dxaLnn field for the SEP record.
304      */

305     public void setDxaLnn(int field_12_dxaLnn)
306     {
307         this.field_12_dxaLnn = field_12_dxaLnn;
308     }
309
310     /**
311      * Get the dxaPgn field for the SEP record.
312      */

313     public int getDxaPgn()
314     {
315         return field_13_dxaPgn;
316     }
317
318     /**
319      * Set the dxaPgn field for the SEP record.
320      */

321     public void setDxaPgn(int field_13_dxaPgn)
322     {
323         this.field_13_dxaPgn = field_13_dxaPgn;
324     }
325
326     /**
327      * Get the dyaPgn field for the SEP record.
328      */

329     public int getDyaPgn()
330     {
331         return field_14_dyaPgn;
332     }
333
334     /**
335      * Set the dyaPgn field for the SEP record.
336      */

337     public void setDyaPgn(int field_14_dyaPgn)
338     {
339         this.field_14_dyaPgn = field_14_dyaPgn;
340     }
341
342     /**
343      * Get the fLBetween field for the SEP record.
344      */

345     public boolean getFLBetween()
346     {
347         return field_15_fLBetween;
348     }
349
350     /**
351      * Set the fLBetween field for the SEP record.
352      */

353     public void setFLBetween(boolean field_15_fLBetween)
354     {
355         this.field_15_fLBetween = field_15_fLBetween;
356     }
357
358     /**
359      * Get the vjc field for the SEP record.
360      */

361     public byte getVjc()
362     {
363         return field_16_vjc;
364     }
365
366     /**
367      * Set the vjc field for the SEP record.
368      */

369     public void setVjc(byte field_16_vjc)
370     {
371         this.field_16_vjc = field_16_vjc;
372     }
373
374     /**
375      * Get the dmBinFirst field for the SEP record.
376      */

377     public int getDmBinFirst()
378     {
379         return field_17_dmBinFirst;
380     }
381
382     /**
383      * Set the dmBinFirst field for the SEP record.
384      */

385     public void setDmBinFirst(int field_17_dmBinFirst)
386     {
387         this.field_17_dmBinFirst = field_17_dmBinFirst;
388     }
389
390     /**
391      * Get the dmBinOther field for the SEP record.
392      */

393     public int getDmBinOther()
394     {
395         return field_18_dmBinOther;
396     }
397
398     /**
399      * Set the dmBinOther field for the SEP record.
400      */

401     public void setDmBinOther(int field_18_dmBinOther)
402     {
403         this.field_18_dmBinOther = field_18_dmBinOther;
404     }
405
406     /**
407      * Get the dmPaperReq field for the SEP record.
408      */

409     public int getDmPaperReq()
410     {
411         return field_19_dmPaperReq;
412     }
413
414     /**
415      * Set the dmPaperReq field for the SEP record.
416      */

417     public void setDmPaperReq(int field_19_dmPaperReq)
418     {
419         this.field_19_dmPaperReq = field_19_dmPaperReq;
420     }
421
422     /**
423      * Get the brcTop field for the SEP record.
424      */

425     public BorderCode getBrcTop()
426     {
427         return field_20_brcTop;
428     }
429
430     /**
431      * Set the brcTop field for the SEP record.
432      */

433     public void setBrcTop(BorderCode field_20_brcTop)
434     {
435         this.field_20_brcTop = field_20_brcTop;
436     }
437
438     /**
439      * Get the brcLeft field for the SEP record.
440      */

441     public BorderCode getBrcLeft()
442     {
443         return field_21_brcLeft;
444     }
445
446     /**
447      * Set the brcLeft field for the SEP record.
448      */

449     public void setBrcLeft(BorderCode field_21_brcLeft)
450     {
451         this.field_21_brcLeft = field_21_brcLeft;
452     }
453
454     /**
455      * Get the brcBottom field for the SEP record.
456      */

457     public BorderCode getBrcBottom()
458     {
459         return field_22_brcBottom;
460     }
461
462     /**
463      * Set the brcBottom field for the SEP record.
464      */

465     public void setBrcBottom(BorderCode field_22_brcBottom)
466     {
467         this.field_22_brcBottom = field_22_brcBottom;
468     }
469
470     /**
471      * Get the brcRight field for the SEP record.
472      */

473     public BorderCode getBrcRight()
474     {
475         return field_23_brcRight;
476     }
477
478     /**
479      * Set the brcRight field for the SEP record.
480      */

481     public void setBrcRight(BorderCode field_23_brcRight)
482     {
483         this.field_23_brcRight = field_23_brcRight;
484     }
485
486     /**
487      * Get the fPropMark field for the SEP record.
488      */

489     public boolean getFPropMark()
490     {
491         return field_24_fPropMark;
492     }
493
494     /**
495      * Set the fPropMark field for the SEP record.
496      */

497     public void setFPropMark(boolean field_24_fPropMark)
498     {
499         this.field_24_fPropMark = field_24_fPropMark;
500     }
501
502     /**
503      * Get the ibstPropRMark field for the SEP record.
504      */

505     public int getIbstPropRMark()
506     {
507         return field_25_ibstPropRMark;
508     }
509
510     /**
511      * Set the ibstPropRMark field for the SEP record.
512      */

513     public void setIbstPropRMark(int field_25_ibstPropRMark)
514     {
515         this.field_25_ibstPropRMark = field_25_ibstPropRMark;
516     }
517
518     /**
519      * Get the dttmPropRMark field for the SEP record.
520      */

521     public DateAndTime getDttmPropRMark()
522     {
523         return field_26_dttmPropRMark;
524     }
525
526     /**
527      * Set the dttmPropRMark field for the SEP record.
528      */

529     public void setDttmPropRMark(DateAndTime field_26_dttmPropRMark)
530     {
531         this.field_26_dttmPropRMark = field_26_dttmPropRMark;
532     }
533
534     /**
535      * Get the dxtCharSpace field for the SEP record.
536      */

537     public int getDxtCharSpace()
538     {
539         return field_27_dxtCharSpace;
540     }
541
542     /**
543      * Set the dxtCharSpace field for the SEP record.
544      */

545     public void setDxtCharSpace(int field_27_dxtCharSpace)
546     {
547         this.field_27_dxtCharSpace = field_27_dxtCharSpace;
548     }
549
550     /**
551      * Get the dyaLinePitch field for the SEP record.
552      */

553     public int getDyaLinePitch()
554     {
555         return field_28_dyaLinePitch;
556     }
557
558     /**
559      * Set the dyaLinePitch field for the SEP record.
560      */

561     public void setDyaLinePitch(int field_28_dyaLinePitch)
562     {
563         this.field_28_dyaLinePitch = field_28_dyaLinePitch;
564     }
565
566     /**
567      * Get the clm field for the SEP record.
568      */

569     public int getClm()
570     {
571         return field_29_clm;
572     }
573
574     /**
575      * Set the clm field for the SEP record.
576      */

577     public void setClm(int field_29_clm)
578     {
579         this.field_29_clm = field_29_clm;
580     }
581
582     /**
583      * Get the unused2 field for the SEP record.
584      */

585     public int getUnused2()
586     {
587         return field_30_unused2;
588     }
589
590     /**
591      * Set the unused2 field for the SEP record.
592      */

593     public void setUnused2(int field_30_unused2)
594     {
595         this.field_30_unused2 = field_30_unused2;
596     }
597
598     /**
599      * Get the dmOrientPage field for the SEP record.
600      */

601     public byte getDmOrientPage()
602     {
603         return field_31_dmOrientPage;
604     }
605
606     /**
607      * Set the dmOrientPage field for the SEP record.
608      */

609     public void setDmOrientPage(byte field_31_dmOrientPage)
610     {
611         this.field_31_dmOrientPage = field_31_dmOrientPage;
612     }
613
614     /**
615      * Get the iHeadingPgn field for the SEP record.
616      */

617     public byte getIHeadingPgn()
618     {
619         return field_32_iHeadingPgn;
620     }
621
622     /**
623      * Set the iHeadingPgn field for the SEP record.
624      */

625     public void setIHeadingPgn(byte field_32_iHeadingPgn)
626     {
627         this.field_32_iHeadingPgn = field_32_iHeadingPgn;
628     }
629
630     /**
631      * Get the pgnStart field for the SEP record.
632      */

633     public int getPgnStart()
634     {
635         return field_33_pgnStart;
636     }
637
638     /**
639      * Set the pgnStart field for the SEP record.
640      */

641     public void setPgnStart(int field_33_pgnStart)
642     {
643         this.field_33_pgnStart = field_33_pgnStart;
644     }
645
646     /**
647      * Get the lnnMin field for the SEP record.
648      */

649     public int getLnnMin()
650     {
651         return field_34_lnnMin;
652     }
653
654     /**
655      * Set the lnnMin field for the SEP record.
656      */

657     public void setLnnMin(int field_34_lnnMin)
658     {
659         this.field_34_lnnMin = field_34_lnnMin;
660     }
661
662     /**
663      * Get the wTextFlow field for the SEP record.
664      */

665     public int getWTextFlow()
666     {
667         return field_35_wTextFlow;
668     }
669
670     /**
671      * Set the wTextFlow field for the SEP record.
672      */

673     public void setWTextFlow(int field_35_wTextFlow)
674     {
675         this.field_35_wTextFlow = field_35_wTextFlow;
676     }
677
678     /**
679      * Get the unused3 field for the SEP record.
680      */

681     public short getUnused3()
682     {
683         return field_36_unused3;
684     }
685
686     /**
687      * Set the unused3 field for the SEP record.
688      */

689     public void setUnused3(short field_36_unused3)
690     {
691         this.field_36_unused3 = field_36_unused3;
692     }
693
694     /**
695      * Get the pgbProp field for the SEP record.
696      */

697     public int getPgbProp()
698     {
699         return field_37_pgbProp;
700     }
701
702     /**
703      * Set the pgbProp field for the SEP record.
704      */

705     public void setPgbProp(int field_37_pgbProp)
706     {
707         this.field_37_pgbProp = field_37_pgbProp;
708     }
709
710     /**
711      * Get the unused4 field for the SEP record.
712      */

713     public short getUnused4()
714     {
715         return field_38_unused4;
716     }
717
718     /**
719      * Set the unused4 field for the SEP record.
720      */

721     public void setUnused4(short field_38_unused4)
722     {
723         this.field_38_unused4 = field_38_unused4;
724     }
725
726     /**
727      * Get the xaPage field for the SEP record.
728      */

729     public int getXaPage()
730     {
731         return field_39_xaPage;
732     }
733
734     /**
735      * Set the xaPage field for the SEP record.
736      */

737     public void setXaPage(int field_39_xaPage)
738     {
739         this.field_39_xaPage = field_39_xaPage;
740     }
741
742     /**
743      * Get the yaPage field for the SEP record.
744      */

745     public int getYaPage()
746     {
747         return field_40_yaPage;
748     }
749
750     /**
751      * Set the yaPage field for the SEP record.
752      */

753     public void setYaPage(int field_40_yaPage)
754     {
755         this.field_40_yaPage = field_40_yaPage;
756     }
757
758     /**
759      * Get the xaPageNUp field for the SEP record.
760      */

761     public int getXaPageNUp()
762     {
763         return field_41_xaPageNUp;
764     }
765
766     /**
767      * Set the xaPageNUp field for the SEP record.
768      */

769     public void setXaPageNUp(int field_41_xaPageNUp)
770     {
771         this.field_41_xaPageNUp = field_41_xaPageNUp;
772     }
773
774     /**
775      * Get the yaPageNUp field for the SEP record.
776      */

777     public int getYaPageNUp()
778     {
779         return field_42_yaPageNUp;
780     }
781
782     /**
783      * Set the yaPageNUp field for the SEP record.
784      */

785     public void setYaPageNUp(int field_42_yaPageNUp)
786     {
787         this.field_42_yaPageNUp = field_42_yaPageNUp;
788     }
789
790     /**
791      * Get the dxaLeft field for the SEP record.
792      */

793     public int getDxaLeft()
794     {
795         return field_43_dxaLeft;
796     }
797
798     /**
799      * Set the dxaLeft field for the SEP record.
800      */

801     public void setDxaLeft(int field_43_dxaLeft)
802     {
803         this.field_43_dxaLeft = field_43_dxaLeft;
804     }
805
806     /**
807      * Get the dxaRight field for the SEP record.
808      */

809     public int getDxaRight()
810     {
811         return field_44_dxaRight;
812     }
813
814     /**
815      * Set the dxaRight field for the SEP record.
816      */

817     public void setDxaRight(int field_44_dxaRight)
818     {
819         this.field_44_dxaRight = field_44_dxaRight;
820     }
821
822     /**
823      * Get the dyaTop field for the SEP record.
824      */

825     public int getDyaTop()
826     {
827         return field_45_dyaTop;
828     }
829
830     /**
831      * Set the dyaTop field for the SEP record.
832      */

833     public void setDyaTop(int field_45_dyaTop)
834     {
835         this.field_45_dyaTop = field_45_dyaTop;
836     }
837
838     /**
839      * Get the dyaBottom field for the SEP record.
840      */

841     public int getDyaBottom()
842     {
843         return field_46_dyaBottom;
844     }
845
846     /**
847      * Set the dyaBottom field for the SEP record.
848      */

849     public void setDyaBottom(int field_46_dyaBottom)
850     {
851         this.field_46_dyaBottom = field_46_dyaBottom;
852     }
853
854     /**
855      * Get the dzaGutter field for the SEP record.
856      */

857     public int getDzaGutter()
858     {
859         return field_47_dzaGutter;
860     }
861
862     /**
863      * Set the dzaGutter field for the SEP record.
864      */

865     public void setDzaGutter(int field_47_dzaGutter)
866     {
867         this.field_47_dzaGutter = field_47_dzaGutter;
868     }
869
870     /**
871      * Get the dyaHdrTop field for the SEP record.
872      */

873     public int getDyaHdrTop()
874     {
875         return field_48_dyaHdrTop;
876     }
877
878     /**
879      * Set the dyaHdrTop field for the SEP record.
880      */

881     public void setDyaHdrTop(int field_48_dyaHdrTop)
882     {
883         this.field_48_dyaHdrTop = field_48_dyaHdrTop;
884     }
885
886     /**
887      * Get the dyaHdrBottom field for the SEP record.
888      */

889     public int getDyaHdrBottom()
890     {
891         return field_49_dyaHdrBottom;
892     }
893
894     /**
895      * Set the dyaHdrBottom field for the SEP record.
896      */

897     public void setDyaHdrBottom(int field_49_dyaHdrBottom)
898     {
899         this.field_49_dyaHdrBottom = field_49_dyaHdrBottom;
900     }
901
902     /**
903      * Get the ccolM1 field for the SEP record.
904      */

905     public int getCcolM1()
906     {
907         return field_50_ccolM1;
908     }
909
910     /**
911      * Set the ccolM1 field for the SEP record.
912      */

913     public void setCcolM1(int field_50_ccolM1)
914     {
915         this.field_50_ccolM1 = field_50_ccolM1;
916     }
917
918     /**
919      * Get the fEvenlySpaced field for the SEP record.
920      */

921     public boolean getFEvenlySpaced()
922     {
923         return field_51_fEvenlySpaced;
924     }
925
926     /**
927      * Set the fEvenlySpaced field for the SEP record.
928      */

929     public void setFEvenlySpaced(boolean field_51_fEvenlySpaced)
930     {
931         this.field_51_fEvenlySpaced = field_51_fEvenlySpaced;
932     }
933
934     /**
935      * Get the unused5 field for the SEP record.
936      */

937     public byte getUnused5()
938     {
939         return field_52_unused5;
940     }
941
942     /**
943      * Set the unused5 field for the SEP record.
944      */

945     public void setUnused5(byte field_52_unused5)
946     {
947         this.field_52_unused5 = field_52_unused5;
948     }
949
950     /**
951      * Get the dxaColumns field for the SEP record.
952      */

953     public int getDxaColumns()
954     {
955         return field_53_dxaColumns;
956     }
957
958     /**
959      * Set the dxaColumns field for the SEP record.
960      */

961     public void setDxaColumns(int field_53_dxaColumns)
962     {
963         this.field_53_dxaColumns = field_53_dxaColumns;
964     }
965
966     /**
967      * Get the rgdxaColumn field for the SEP record.
968      */

969     public int[] getRgdxaColumn()
970     {
971         return field_54_rgdxaColumn;
972     }
973
974     /**
975      * Set the rgdxaColumn field for the SEP record.
976      */

977     public void setRgdxaColumn(int[] field_54_rgdxaColumn)
978     {
979         this.field_54_rgdxaColumn = field_54_rgdxaColumn;
980     }
981
982     /**
983      * Get the dxaColumnWidth field for the SEP record.
984      */

985     public int getDxaColumnWidth()
986     {
987         return field_55_dxaColumnWidth;
988     }
989
990     /**
991      * Set the dxaColumnWidth field for the SEP record.
992      */

993     public void setDxaColumnWidth(int field_55_dxaColumnWidth)
994     {
995         this.field_55_dxaColumnWidth = field_55_dxaColumnWidth;
996     }
997
998     /**
999      * Get the dmOrientFirst field for the SEP record.
1000     */

1001    public byte getDmOrientFirst()
1002    {
1003        return field_56_dmOrientFirst;
1004    }
1005
1006    /**
1007     * Set the dmOrientFirst field for the SEP record.
1008     */

1009    public void setDmOrientFirst(byte field_56_dmOrientFirst)
1010    {
1011        this.field_56_dmOrientFirst = field_56_dmOrientFirst;
1012    }
1013
1014    /**
1015     * Get the fLayout field for the SEP record.
1016     */

1017    public byte getFLayout()
1018    {
1019        return field_57_fLayout;
1020    }
1021
1022    /**
1023     * Set the fLayout field for the SEP record.
1024     */

1025    public void setFLayout(byte field_57_fLayout)
1026    {
1027        this.field_57_fLayout = field_57_fLayout;
1028    }
1029
1030    /**
1031     * Get the unused6 field for the SEP record.
1032     */

1033    public short getUnused6()
1034    {
1035        return field_58_unused6;
1036    }
1037
1038    /**
1039     * Set the unused6 field for the SEP record.
1040     */

1041    public void setUnused6(short field_58_unused6)
1042    {
1043        this.field_58_unused6 = field_58_unused6;
1044    }
1045
1046    /**
1047     * Get the olstAnm field for the SEP record.
1048     */

1049    public byte[] getOlstAnm()
1050    {
1051        return field_59_olstAnm;
1052    }
1053
1054    /**
1055     * Set the olstAnm field for the SEP record.
1056     */

1057    public void setOlstAnm(byte[] field_59_olstAnm)
1058    {
1059        this.field_59_olstAnm = field_59_olstAnm;
1060    }
1061
1062
1063} // END OF CLASS
1064

1065
1066
1067
1068
Popular Tags