KickJava   Java API By Example, From Geeks To Geeks.

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


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  * Character 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 CHPAbstractType
39     implements HDFType
40 {
41
42     protected short field_1_chse;
43     protected int field_2_format_flags;
44         private static BitField fBold = new BitField(0x0001);
45         private static BitField fItalic = new BitField(0x0002);
46         private static BitField fRMarkDel = new BitField(0x0004);
47         private static BitField fOutline = new BitField(0x0008);
48         private static BitField fFldVanish = new BitField(0x0010);
49         private static BitField fSmallCaps = new BitField(0x0020);
50         private static BitField fCaps = new BitField(0x0040);
51         private static BitField fVanish = new BitField(0x0080);
52         private static BitField fRMark = new BitField(0x0100);
53         private static BitField fSpec = new BitField(0x0200);
54         private static BitField fStrike = new BitField(0x0400);
55         private static BitField fObj = new BitField(0x0800);
56         private static BitField fShadow = new BitField(0x1000);
57         private static BitField fLowerCase = new BitField(0x2000);
58         private static BitField fData = new BitField(0x4000);
59         private static BitField fOle2 = new BitField(0x8000);
60     protected int field_3_format_flags1;
61         private static BitField fEmboss = new BitField(0x0001);
62         private static BitField fImprint = new BitField(0x0002);
63         private static BitField fDStrike = new BitField(0x0004);
64         private static BitField fUsePgsuSettings = new BitField(0x0008);
65     protected int field_4_ftcAscii;
66     protected int field_5_ftcFE;
67     protected int field_6_ftcOther;
68     protected int field_7_hps;
69     protected int field_8_dxaSpace;
70     protected byte field_9_iss;
71     protected byte field_10_kul;
72     protected byte field_11_ico;
73     protected int field_12_hpsPos;
74     protected int field_13_lidDefault;
75     protected int field_14_lidFE;
76     protected byte field_15_idctHint;
77     protected int field_16_wCharScale;
78     protected int field_17_fcPic;
79     protected int field_18_fcObj;
80     protected int field_19_lTagObj;
81     protected int field_20_ibstRMark;
82     protected int field_21_ibstRMarkDel;
83     protected DateAndTime field_22_dttmRMark;
84     protected DateAndTime field_23_dttmRMarkDel;
85     protected int field_24_istd;
86     protected int field_25_baseIstd;
87     protected int field_26_ftcSym;
88     protected int field_27_xchSym;
89     protected int field_28_idslRMReason;
90     protected int field_29_idslReasonDel;
91     protected byte field_30_ysr;
92     protected byte field_31_chYsr;
93     protected int field_32_hpsKern;
94     protected short field_33_Highlight;
95         private static BitField icoHighlight = new BitField(0x001f);
96         private static BitField fHighlight = new BitField(0x0020);
97         private static BitField kcd = new BitField(0x01c0);
98         private static BitField fNavHighlight = new BitField(0x0200);
99         private static BitField fChsDiff = new BitField(0x0400);
100         private static BitField fMacChs = new BitField(0x0800);
101         private static BitField fFtcAsciSym = new BitField(0x1000);
102     protected short field_34_fPropMark;
103     protected int field_35_ibstPropRMark;
104     protected DateAndTime field_36_dttmPropRMark;
105     protected byte field_37_sfxtText;
106     protected byte field_38_fDispFldRMark;
107     protected int field_39_ibstDispFldRMark;
108     protected DateAndTime field_40_dttmDispFldRMark;
109     protected byte[] field_41_xstDispFldRMark;
110     protected ShadingDescriptor field_42_shd;
111     protected BorderCode field_43_brc;
112
113
114     public CHPAbstractType()
115     {
116
117     }
118
119     /**
120      * Size of record (exluding 4 byte header)
121      */

122     public int getSize()
123     {
124         return 4 + + 2 + 2 + 2 + 2 + 2 + 2 + 2 + 4 + 1 + 1 + 1 + 2 + 2 + 2 + 1 + 2 + 4 + 4 + 4 + 2 + 2 + 4 + 4 + 2 + 2 + 2 + 2 + 2 + 2 + 1 + 1 + 2 + 2 + 2 + 2 + 4 + 1 + 1 + 2 + 4 + 32 + 2 + 4;
125     }
126
127
128
129     /**
130      * Get the chse field for the CHP record.
131      */

132     public short getChse()
133     {
134         return field_1_chse;
135     }
136
137     /**
138      * Set the chse field for the CHP record.
139      */

140     public void setChse(short field_1_chse)
141     {
142         this.field_1_chse = field_1_chse;
143     }
144
145     /**
146      * Get the format_flags field for the CHP record.
147      */

148     public int getFormat_flags()
149     {
150         return field_2_format_flags;
151     }
152
153     /**
154      * Set the format_flags field for the CHP record.
155      */

156     public void setFormat_flags(int field_2_format_flags)
157     {
158         this.field_2_format_flags = field_2_format_flags;
159     }
160
161     /**
162      * Get the format_flags1 field for the CHP record.
163      */

164     public int getFormat_flags1()
165     {
166         return field_3_format_flags1;
167     }
168
169     /**
170      * Set the format_flags1 field for the CHP record.
171      */

172     public void setFormat_flags1(int field_3_format_flags1)
173     {
174         this.field_3_format_flags1 = field_3_format_flags1;
175     }
176
177     /**
178      * Get the ftcAscii field for the CHP record.
179      */

180     public int getFtcAscii()
181     {
182         return field_4_ftcAscii;
183     }
184
185     /**
186      * Set the ftcAscii field for the CHP record.
187      */

188     public void setFtcAscii(int field_4_ftcAscii)
189     {
190         this.field_4_ftcAscii = field_4_ftcAscii;
191     }
192
193     /**
194      * Get the ftcFE field for the CHP record.
195      */

196     public int getFtcFE()
197     {
198         return field_5_ftcFE;
199     }
200
201     /**
202      * Set the ftcFE field for the CHP record.
203      */

204     public void setFtcFE(int field_5_ftcFE)
205     {
206         this.field_5_ftcFE = field_5_ftcFE;
207     }
208
209     /**
210      * Get the ftcOther field for the CHP record.
211      */

212     public int getFtcOther()
213     {
214         return field_6_ftcOther;
215     }
216
217     /**
218      * Set the ftcOther field for the CHP record.
219      */

220     public void setFtcOther(int field_6_ftcOther)
221     {
222         this.field_6_ftcOther = field_6_ftcOther;
223     }
224
225     /**
226      * Get the hps field for the CHP record.
227      */

228     public int getHps()
229     {
230         return field_7_hps;
231     }
232
233     /**
234      * Set the hps field for the CHP record.
235      */

236     public void setHps(int field_7_hps)
237     {
238         this.field_7_hps = field_7_hps;
239     }
240
241     /**
242      * Get the dxaSpace field for the CHP record.
243      */

244     public int getDxaSpace()
245     {
246         return field_8_dxaSpace;
247     }
248
249     /**
250      * Set the dxaSpace field for the CHP record.
251      */

252     public void setDxaSpace(int field_8_dxaSpace)
253     {
254         this.field_8_dxaSpace = field_8_dxaSpace;
255     }
256
257     /**
258      * Get the iss field for the CHP record.
259      */

260     public byte getIss()
261     {
262         return field_9_iss;
263     }
264
265     /**
266      * Set the iss field for the CHP record.
267      */

268     public void setIss(byte field_9_iss)
269     {
270         this.field_9_iss = field_9_iss;
271     }
272
273     /**
274      * Get the kul field for the CHP record.
275      */

276     public byte getKul()
277     {
278         return field_10_kul;
279     }
280
281     /**
282      * Set the kul field for the CHP record.
283      */

284     public void setKul(byte field_10_kul)
285     {
286         this.field_10_kul = field_10_kul;
287     }
288
289     /**
290      * Get the ico field for the CHP record.
291      */

292     public byte getIco()
293     {
294         return field_11_ico;
295     }
296
297     /**
298      * Set the ico field for the CHP record.
299      */

300     public void setIco(byte field_11_ico)
301     {
302         this.field_11_ico = field_11_ico;
303     }
304
305     /**
306      * Get the hpsPos field for the CHP record.
307      */

308     public int getHpsPos()
309     {
310         return field_12_hpsPos;
311     }
312
313     /**
314      * Set the hpsPos field for the CHP record.
315      */

316     public void setHpsPos(int field_12_hpsPos)
317     {
318         this.field_12_hpsPos = field_12_hpsPos;
319     }
320
321     /**
322      * Get the lidDefault field for the CHP record.
323      */

324     public int getLidDefault()
325     {
326         return field_13_lidDefault;
327     }
328
329     /**
330      * Set the lidDefault field for the CHP record.
331      */

332     public void setLidDefault(int field_13_lidDefault)
333     {
334         this.field_13_lidDefault = field_13_lidDefault;
335     }
336
337     /**
338      * Get the lidFE field for the CHP record.
339      */

340     public int getLidFE()
341     {
342         return field_14_lidFE;
343     }
344
345     /**
346      * Set the lidFE field for the CHP record.
347      */

348     public void setLidFE(int field_14_lidFE)
349     {
350         this.field_14_lidFE = field_14_lidFE;
351     }
352
353     /**
354      * Get the idctHint field for the CHP record.
355      */

356     public byte getIdctHint()
357     {
358         return field_15_idctHint;
359     }
360
361     /**
362      * Set the idctHint field for the CHP record.
363      */

364     public void setIdctHint(byte field_15_idctHint)
365     {
366         this.field_15_idctHint = field_15_idctHint;
367     }
368
369     /**
370      * Get the wCharScale field for the CHP record.
371      */

372     public int getWCharScale()
373     {
374         return field_16_wCharScale;
375     }
376
377     /**
378      * Set the wCharScale field for the CHP record.
379      */

380     public void setWCharScale(int field_16_wCharScale)
381     {
382         this.field_16_wCharScale = field_16_wCharScale;
383     }
384
385     /**
386      * Get the fcPic field for the CHP record.
387      */

388     public int getFcPic()
389     {
390         return field_17_fcPic;
391     }
392
393     /**
394      * Set the fcPic field for the CHP record.
395      */

396     public void setFcPic(int field_17_fcPic)
397     {
398         this.field_17_fcPic = field_17_fcPic;
399     }
400
401     /**
402      * Get the fcObj field for the CHP record.
403      */

404     public int getFcObj()
405     {
406         return field_18_fcObj;
407     }
408
409     /**
410      * Set the fcObj field for the CHP record.
411      */

412     public void setFcObj(int field_18_fcObj)
413     {
414         this.field_18_fcObj = field_18_fcObj;
415     }
416
417     /**
418      * Get the lTagObj field for the CHP record.
419      */

420     public int getLTagObj()
421     {
422         return field_19_lTagObj;
423     }
424
425     /**
426      * Set the lTagObj field for the CHP record.
427      */

428     public void setLTagObj(int field_19_lTagObj)
429     {
430         this.field_19_lTagObj = field_19_lTagObj;
431     }
432
433     /**
434      * Get the ibstRMark field for the CHP record.
435      */

436     public int getIbstRMark()
437     {
438         return field_20_ibstRMark;
439     }
440
441     /**
442      * Set the ibstRMark field for the CHP record.
443      */

444     public void setIbstRMark(int field_20_ibstRMark)
445     {
446         this.field_20_ibstRMark = field_20_ibstRMark;
447     }
448
449     /**
450      * Get the ibstRMarkDel field for the CHP record.
451      */

452     public int getIbstRMarkDel()
453     {
454         return field_21_ibstRMarkDel;
455     }
456
457     /**
458      * Set the ibstRMarkDel field for the CHP record.
459      */

460     public void setIbstRMarkDel(int field_21_ibstRMarkDel)
461     {
462         this.field_21_ibstRMarkDel = field_21_ibstRMarkDel;
463     }
464
465     /**
466      * Get the dttmRMark field for the CHP record.
467      */

468     public DateAndTime getDttmRMark()
469     {
470         return field_22_dttmRMark;
471     }
472
473     /**
474      * Set the dttmRMark field for the CHP record.
475      */

476     public void setDttmRMark(DateAndTime field_22_dttmRMark)
477     {
478         this.field_22_dttmRMark = field_22_dttmRMark;
479     }
480
481     /**
482      * Get the dttmRMarkDel field for the CHP record.
483      */

484     public DateAndTime getDttmRMarkDel()
485     {
486         return field_23_dttmRMarkDel;
487     }
488
489     /**
490      * Set the dttmRMarkDel field for the CHP record.
491      */

492     public void setDttmRMarkDel(DateAndTime field_23_dttmRMarkDel)
493     {
494         this.field_23_dttmRMarkDel = field_23_dttmRMarkDel;
495     }
496
497     /**
498      * Get the istd field for the CHP record.
499      */

500     public int getIstd()
501     {
502         return field_24_istd;
503     }
504
505     /**
506      * Set the istd field for the CHP record.
507      */

508     public void setIstd(int field_24_istd)
509     {
510         this.field_24_istd = field_24_istd;
511     }
512
513     /**
514      * Get the baseIstd field for the CHP record.
515      */

516     public int getBaseIstd()
517     {
518         return field_25_baseIstd;
519     }
520
521     /**
522      * Set the baseIstd field for the CHP record.
523      */

524     public void setBaseIstd(int field_25_baseIstd)
525     {
526         this.field_25_baseIstd = field_25_baseIstd;
527     }
528
529     /**
530      * Get the ftcSym field for the CHP record.
531      */

532     public int getFtcSym()
533     {
534         return field_26_ftcSym;
535     }
536
537     /**
538      * Set the ftcSym field for the CHP record.
539      */

540     public void setFtcSym(int field_26_ftcSym)
541     {
542         this.field_26_ftcSym = field_26_ftcSym;
543     }
544
545     /**
546      * Get the xchSym field for the CHP record.
547      */

548     public int getXchSym()
549     {
550         return field_27_xchSym;
551     }
552
553     /**
554      * Set the xchSym field for the CHP record.
555      */

556     public void setXchSym(int field_27_xchSym)
557     {
558         this.field_27_xchSym = field_27_xchSym;
559     }
560
561     /**
562      * Get the idslRMReason field for the CHP record.
563      */

564     public int getIdslRMReason()
565     {
566         return field_28_idslRMReason;
567     }
568
569     /**
570      * Set the idslRMReason field for the CHP record.
571      */

572     public void setIdslRMReason(int field_28_idslRMReason)
573     {
574         this.field_28_idslRMReason = field_28_idslRMReason;
575     }
576
577     /**
578      * Get the idslReasonDel field for the CHP record.
579      */

580     public int getIdslReasonDel()
581     {
582         return field_29_idslReasonDel;
583     }
584
585     /**
586      * Set the idslReasonDel field for the CHP record.
587      */

588     public void setIdslReasonDel(int field_29_idslReasonDel)
589     {
590         this.field_29_idslReasonDel = field_29_idslReasonDel;
591     }
592
593     /**
594      * Get the ysr field for the CHP record.
595      */

596     public byte getYsr()
597     {
598         return field_30_ysr;
599     }
600
601     /**
602      * Set the ysr field for the CHP record.
603      */

604     public void setYsr(byte field_30_ysr)
605     {
606         this.field_30_ysr = field_30_ysr;
607     }
608
609     /**
610      * Get the chYsr field for the CHP record.
611      */

612     public byte getChYsr()
613     {
614         return field_31_chYsr;
615     }
616
617     /**
618      * Set the chYsr field for the CHP record.
619      */

620     public void setChYsr(byte field_31_chYsr)
621     {
622         this.field_31_chYsr = field_31_chYsr;
623     }
624
625     /**
626      * Get the hpsKern field for the CHP record.
627      */

628     public int getHpsKern()
629     {
630         return field_32_hpsKern;
631     }
632
633     /**
634      * Set the hpsKern field for the CHP record.
635      */

636     public void setHpsKern(int field_32_hpsKern)
637     {
638         this.field_32_hpsKern = field_32_hpsKern;
639     }
640
641     /**
642      * Get the Highlight field for the CHP record.
643      */

644     public short getHighlight()
645     {
646         return field_33_Highlight;
647     }
648
649     /**
650      * Set the Highlight field for the CHP record.
651      */

652     public void setHighlight(short field_33_Highlight)
653     {
654         this.field_33_Highlight = field_33_Highlight;
655     }
656
657     /**
658      * Get the fPropMark field for the CHP record.
659      */

660     public short getFPropMark()
661     {
662         return field_34_fPropMark;
663     }
664
665     /**
666      * Set the fPropMark field for the CHP record.
667      */

668     public void setFPropMark(short field_34_fPropMark)
669     {
670         this.field_34_fPropMark = field_34_fPropMark;
671     }
672
673     /**
674      * Get the ibstPropRMark field for the CHP record.
675      */

676     public int getIbstPropRMark()
677     {
678         return field_35_ibstPropRMark;
679     }
680
681     /**
682      * Set the ibstPropRMark field for the CHP record.
683      */

684     public void setIbstPropRMark(int field_35_ibstPropRMark)
685     {
686         this.field_35_ibstPropRMark = field_35_ibstPropRMark;
687     }
688
689     /**
690      * Get the dttmPropRMark field for the CHP record.
691      */

692     public DateAndTime getDttmPropRMark()
693     {
694         return field_36_dttmPropRMark;
695     }
696
697     /**
698      * Set the dttmPropRMark field for the CHP record.
699      */

700     public void setDttmPropRMark(DateAndTime field_36_dttmPropRMark)
701     {
702         this.field_36_dttmPropRMark = field_36_dttmPropRMark;
703     }
704
705     /**
706      * Get the sfxtText field for the CHP record.
707      */

708     public byte getSfxtText()
709     {
710         return field_37_sfxtText;
711     }
712
713     /**
714      * Set the sfxtText field for the CHP record.
715      */

716     public void setSfxtText(byte field_37_sfxtText)
717     {
718         this.field_37_sfxtText = field_37_sfxtText;
719     }
720
721     /**
722      * Get the fDispFldRMark field for the CHP record.
723      */

724     public byte getFDispFldRMark()
725     {
726         return field_38_fDispFldRMark;
727     }
728
729     /**
730      * Set the fDispFldRMark field for the CHP record.
731      */

732     public void setFDispFldRMark(byte field_38_fDispFldRMark)
733     {
734         this.field_38_fDispFldRMark = field_38_fDispFldRMark;
735     }
736
737     /**
738      * Get the ibstDispFldRMark field for the CHP record.
739      */

740     public int getIbstDispFldRMark()
741     {
742         return field_39_ibstDispFldRMark;
743     }
744
745     /**
746      * Set the ibstDispFldRMark field for the CHP record.
747      */

748     public void setIbstDispFldRMark(int field_39_ibstDispFldRMark)
749     {
750         this.field_39_ibstDispFldRMark = field_39_ibstDispFldRMark;
751     }
752
753     /**
754      * Get the dttmDispFldRMark field for the CHP record.
755      */

756     public DateAndTime getDttmDispFldRMark()
757     {
758         return field_40_dttmDispFldRMark;
759     }
760
761     /**
762      * Set the dttmDispFldRMark field for the CHP record.
763      */

764     public void setDttmDispFldRMark(DateAndTime field_40_dttmDispFldRMark)
765     {
766         this.field_40_dttmDispFldRMark = field_40_dttmDispFldRMark;
767     }
768
769     /**
770      * Get the xstDispFldRMark field for the CHP record.
771      */

772     public byte[] getXstDispFldRMark()
773     {
774         return field_41_xstDispFldRMark;
775     }
776
777     /**
778      * Set the xstDispFldRMark field for the CHP record.
779      */

780     public void setXstDispFldRMark(byte[] field_41_xstDispFldRMark)
781     {
782         this.field_41_xstDispFldRMark = field_41_xstDispFldRMark;
783     }
784
785     /**
786      * Get the shd field for the CHP record.
787      */

788     public ShadingDescriptor getShd()
789     {
790         return field_42_shd;
791     }
792
793     /**
794      * Set the shd field for the CHP record.
795      */

796     public void setShd(ShadingDescriptor field_42_shd)
797     {
798         this.field_42_shd = field_42_shd;
799     }
800
801     /**
802      * Get the brc field for the CHP record.
803      */

804     public BorderCode getBrc()
805     {
806         return field_43_brc;
807     }
808
809     /**
810      * Set the brc field for the CHP record.
811      */

812     public void setBrc(BorderCode field_43_brc)
813     {
814         this.field_43_brc = field_43_brc;
815     }
816
817     /**
818      * Sets the fBold field value.
819      *
820      */

821     public void setFBold(boolean value)
822     {
823         field_2_format_flags = (int)fBold.setBoolean(field_2_format_flags, value);
824
825         
826     }
827
828     /**
829      *
830      * @return the fBold field value.
831      */

832     public boolean isFBold()
833     {
834         return fBold.isSet(field_2_format_flags);
835         
836     }
837
838     /**
839      * Sets the fItalic field value.
840      *
841      */

842     public void setFItalic(boolean value)
843     {
844         field_2_format_flags = (int)fItalic.setBoolean(field_2_format_flags, value);
845
846         
847     }
848
849     /**
850      *
851      * @return the fItalic field value.
852      */

853     public boolean isFItalic()
854     {
855         return fItalic.isSet(field_2_format_flags);
856         
857     }
858
859     /**
860      * Sets the fRMarkDel field value.
861      *
862      */

863     public void setFRMarkDel(boolean value)
864     {
865         field_2_format_flags = (int)fRMarkDel.setBoolean(field_2_format_flags, value);
866
867         
868     }
869
870     /**
871      *
872      * @return the fRMarkDel field value.
873      */

874     public boolean isFRMarkDel()
875     {
876         return fRMarkDel.isSet(field_2_format_flags);
877         
878     }
879
880     /**
881      * Sets the fOutline field value.
882      *
883      */

884     public void setFOutline(boolean value)
885     {
886         field_2_format_flags = (int)fOutline.setBoolean(field_2_format_flags, value);
887
888         
889     }
890
891     /**
892      *
893      * @return the fOutline field value.
894      */

895     public boolean isFOutline()
896     {
897         return fOutline.isSet(field_2_format_flags);
898         
899     }
900
901     /**
902      * Sets the fFldVanish field value.
903      *
904      */

905     public void setFFldVanish(boolean value)
906     {
907         field_2_format_flags = (int)fFldVanish.setBoolean(field_2_format_flags, value);
908
909         
910     }
911
912     /**
913      *
914      * @return the fFldVanish field value.
915      */

916     public boolean isFFldVanish()
917     {
918         return fFldVanish.isSet(field_2_format_flags);
919         
920     }
921
922     /**
923      * Sets the fSmallCaps field value.
924      *
925      */

926     public void setFSmallCaps(boolean value)
927     {
928         field_2_format_flags = (int)fSmallCaps.setBoolean(field_2_format_flags, value);
929
930         
931     }
932
933     /**
934      *
935      * @return the fSmallCaps field value.
936      */

937     public boolean isFSmallCaps()
938     {
939         return fSmallCaps.isSet(field_2_format_flags);
940         
941     }
942
943     /**
944      * Sets the fCaps field value.
945      *
946      */

947     public void setFCaps(boolean value)
948     {
949         field_2_format_flags = (int)fCaps.setBoolean(field_2_format_flags, value);
950
951         
952     }
953
954     /**
955      *
956      * @return the fCaps field value.
957      */

958     public boolean isFCaps()
959     {
960         return fCaps.isSet(field_2_format_flags);
961         
962     }
963
964     /**
965      * Sets the fVanish field value.
966      *
967      */

968     public void setFVanish(boolean value)
969     {
970         field_2_format_flags = (int)fVanish.setBoolean(field_2_format_flags, value);
971
972         
973     }
974
975     /**
976      *
977      * @return the fVanish field value.
978      */

979     public boolean isFVanish()
980     {
981         return fVanish.isSet(field_2_format_flags);
982         
983     }
984
985     /**
986      * Sets the fRMark field value.
987      *
988      */

989     public void setFRMark(boolean value)
990     {
991         field_2_format_flags = (int)fRMark.setBoolean(field_2_format_flags, value);
992
993         
994     }
995
996     /**
997      *
998      * @return the fRMark field value.
999      */

1000    public boolean isFRMark()
1001    {
1002        return fRMark.isSet(field_2_format_flags);
1003        
1004    }
1005
1006    /**
1007     * Sets the fSpec field value.
1008     *
1009     */

1010    public void setFSpec(boolean value)
1011    {
1012        field_2_format_flags = (int)fSpec.setBoolean(field_2_format_flags, value);
1013
1014        
1015    }
1016
1017    /**
1018     *
1019     * @return the fSpec field value.
1020     */

1021    public boolean isFSpec()
1022    {
1023        return fSpec.isSet(field_2_format_flags);
1024        
1025    }
1026
1027    /**
1028     * Sets the fStrike field value.
1029     *
1030     */

1031    public void setFStrike(boolean value)
1032    {
1033        field_2_format_flags = (int)fStrike.setBoolean(field_2_format_flags, value);
1034
1035        
1036    }
1037
1038    /**
1039     *
1040     * @return the fStrike field value.
1041     */

1042    public boolean isFStrike()
1043    {
1044        return fStrike.isSet(field_2_format_flags);
1045        
1046    }
1047
1048    /**
1049     * Sets the fObj field value.
1050     *
1051     */

1052    public void setFObj(boolean value)
1053    {
1054        field_2_format_flags = (int)fObj.setBoolean(field_2_format_flags, value);
1055
1056        
1057    }
1058
1059    /**
1060     *
1061     * @return the fObj field value.
1062     */

1063    public boolean isFObj()
1064    {
1065        return fObj.isSet(field_2_format_flags);
1066        
1067    }
1068
1069    /**
1070     * Sets the fShadow field value.
1071     *
1072     */

1073    public void setFShadow(boolean value)
1074    {
1075        field_2_format_flags = (int)fShadow.setBoolean(field_2_format_flags, value);
1076
1077        
1078    }
1079
1080    /**
1081     *
1082     * @return the fShadow field value.
1083     */

1084    public boolean isFShadow()
1085    {
1086        return fShadow.isSet(field_2_format_flags);
1087        
1088    }
1089
1090    /**
1091     * Sets the fLowerCase field value.
1092     *
1093     */

1094    public void setFLowerCase(boolean value)
1095    {
1096        field_2_format_flags = (int)fLowerCase.setBoolean(field_2_format_flags, value);
1097
1098        
1099    }
1100
1101    /**
1102     *
1103     * @return the fLowerCase field value.
1104     */

1105    public boolean isFLowerCase()
1106    {
1107        return fLowerCase.isSet(field_2_format_flags);
1108        
1109    }
1110
1111    /**
1112     * Sets the fData field value.
1113     *
1114     */

1115    public void setFData(boolean value)
1116    {
1117        field_2_format_flags = (int)fData.setBoolean(field_2_format_flags, value);
1118
1119        
1120    }
1121
1122    /**
1123     *
1124     * @return the fData field value.
1125     */

1126    public boolean isFData()
1127    {
1128        return fData.isSet(field_2_format_flags);
1129        
1130    }
1131
1132    /**
1133     * Sets the fOle2 field value.
1134     *
1135     */

1136    public void setFOle2(boolean value)
1137    {
1138        field_2_format_flags = (int)fOle2.setBoolean(field_2_format_flags, value);
1139
1140        
1141    }
1142
1143    /**
1144     *
1145     * @return the fOle2 field value.
1146     */

1147    public boolean isFOle2()
1148    {
1149        return fOle2.isSet(field_2_format_flags);
1150        
1151    }
1152
1153    /**
1154     * Sets the fEmboss field value.
1155     *
1156     */

1157    public void setFEmboss(boolean value)
1158    {
1159        field_3_format_flags1 = (int)fEmboss.setBoolean(field_3_format_flags1, value);
1160
1161        
1162    }
1163
1164    /**
1165     *
1166     * @return the fEmboss field value.
1167     */

1168    public boolean isFEmboss()
1169    {
1170        return fEmboss.isSet(field_3_format_flags1);
1171        
1172    }
1173
1174    /**
1175     * Sets the fImprint field value.
1176     *
1177     */

1178    public void setFImprint(boolean value)
1179    {
1180        field_3_format_flags1 = (int)fImprint.setBoolean(field_3_format_flags1, value);
1181
1182        
1183    }
1184
1185    /**
1186     *
1187     * @return the fImprint field value.
1188     */

1189    public boolean isFImprint()
1190    {
1191        return fImprint.isSet(field_3_format_flags1);
1192        
1193    }
1194
1195    /**
1196     * Sets the fDStrike field value.
1197     *
1198     */

1199    public void setFDStrike(boolean value)
1200    {
1201        field_3_format_flags1 = (int)fDStrike.setBoolean(field_3_format_flags1, value);
1202
1203        
1204    }
1205
1206    /**
1207     *
1208     * @return the fDStrike field value.
1209     */

1210    public boolean isFDStrike()
1211    {
1212        return fDStrike.isSet(field_3_format_flags1);
1213        
1214    }
1215
1216    /**
1217     * Sets the fUsePgsuSettings field value.
1218     *
1219     */

1220    public void setFUsePgsuSettings(boolean value)
1221    {
1222        field_3_format_flags1 = (int)fUsePgsuSettings.setBoolean(field_3_format_flags1, value);
1223
1224        
1225    }
1226
1227    /**
1228     *
1229     * @return the fUsePgsuSettings field value.
1230     */

1231    public boolean isFUsePgsuSettings()
1232    {
1233        return fUsePgsuSettings.isSet(field_3_format_flags1);
1234        
1235    }
1236
1237    /**
1238     * Sets the icoHighlight field value.
1239     *
1240     */

1241    public void setIcoHighlight(byte value)
1242    {
1243        field_33_Highlight = (short)icoHighlight.setValue(field_33_Highlight, value);
1244
1245        
1246    }
1247
1248    /**
1249     *
1250     * @return the icoHighlight field value.
1251     */

1252    public byte getIcoHighlight()
1253    {
1254        return ( byte )icoHighlight.getValue(field_33_Highlight);
1255        
1256    }
1257
1258    /**
1259     * Sets the fHighlight field value.
1260     *
1261     */

1262    public void setFHighlight(boolean value)
1263    {
1264        field_33_Highlight = (short)fHighlight.setBoolean(field_33_Highlight, value);
1265
1266        
1267    }
1268
1269    /**
1270     *
1271     * @return the fHighlight field value.
1272     */

1273    public boolean isFHighlight()
1274    {
1275        return fHighlight.isSet(field_33_Highlight);
1276        
1277    }
1278
1279    /**
1280     * Sets the kcd field value.
1281     *
1282     */

1283    public void setKcd(byte value)
1284    {
1285        field_33_Highlight = (short)kcd.setValue(field_33_Highlight, value);
1286
1287        
1288    }
1289
1290    /**
1291     *
1292     * @return the kcd field value.
1293     */

1294    public byte getKcd()
1295    {
1296        return ( byte )kcd.getValue(field_33_Highlight);
1297        
1298    }
1299
1300    /**
1301     * Sets the fNavHighlight field value.
1302     *
1303     */

1304    public void setFNavHighlight(boolean value)
1305    {
1306        field_33_Highlight = (short)fNavHighlight.setBoolean(field_33_Highlight, value);
1307
1308        
1309    }
1310
1311    /**
1312     *
1313     * @return the fNavHighlight field value.
1314     */

1315    public boolean isFNavHighlight()
1316    {
1317        return fNavHighlight.isSet(field_33_Highlight);
1318        
1319    }
1320
1321    /**
1322     * Sets the fChsDiff field value.
1323     *
1324     */

1325    public void setFChsDiff(boolean value)
1326    {
1327        field_33_Highlight = (short)fChsDiff.setBoolean(field_33_Highlight, value);
1328
1329        
1330    }
1331
1332    /**
1333     *
1334     * @return the fChsDiff field value.
1335     */

1336    public boolean isFChsDiff()
1337    {
1338        return fChsDiff.isSet(field_33_Highlight);
1339        
1340    }
1341
1342    /**
1343     * Sets the fMacChs field value.
1344     *
1345     */

1346    public void setFMacChs(boolean value)
1347    {
1348        field_33_Highlight = (short)fMacChs.setBoolean(field_33_Highlight, value);
1349
1350        
1351    }
1352
1353    /**
1354     *
1355     * @return the fMacChs field value.
1356     */

1357    public boolean isFMacChs()
1358    {
1359        return fMacChs.isSet(field_33_Highlight);
1360        
1361    }
1362
1363    /**
1364     * Sets the fFtcAsciSym field value.
1365     *
1366     */

1367    public void setFFtcAsciSym(boolean value)
1368    {
1369        field_33_Highlight = (short)fFtcAsciSym.setBoolean(field_33_Highlight, value);
1370
1371        
1372    }
1373
1374    /**
1375     *
1376     * @return the fFtcAsciSym field value.
1377     */

1378    public boolean isFFtcAsciSym()
1379    {
1380        return fFtcAsciSym.isSet(field_33_Highlight);
1381        
1382    }
1383
1384
1385} // END OF CLASS
1386

1387
1388
1389
1390
Popular Tags