KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > poi > hdf > model > hdftypes > definitions > 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.hdf.model.hdftypes.definitions;
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
30 /**
31  * Character Properties.
32  * NOTE: This source is automatically generated please do not modify this file. Either subclass or
33  * remove the record in src/records/definitions.
34
35  * @author S. Ryan Ackley
36  */

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

121     public int getSize()
122     {
123         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;
124     }
125
126
127
128     /**
129      * Get the chse field for the CHP record.
130      */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

1386
1387
1388
1389
Popular Tags