Files
HRMS/hrmsEjb/jxl/write/biff/WritableFormattingRecords.java
2025-07-28 13:56:49 +05:30

103 lines
3.8 KiB
Java

package jxl.write.biff;
import common.Assert;
import jxl.biff.FontRecord;
import jxl.biff.Fonts;
import jxl.biff.FormattingRecords;
import jxl.biff.NumFormatRecordsException;
import jxl.biff.XFRecord;
import jxl.write.NumberFormats;
import jxl.write.WritableCellFormat;
public class WritableFormattingRecords extends FormattingRecords {
public static WritableCellFormat normalStyle;
public WritableFormattingRecords(Fonts f, Styles styles) {
super(f);
try {
StyleXFRecord sxf = new StyleXFRecord((FontRecord)styles.getArial10Pt(), NumberFormats.DEFAULT);
sxf.setLocked(true);
addStyle(sxf);
sxf = new StyleXFRecord(getFonts().getFont(1), NumberFormats.DEFAULT);
sxf.setLocked(true);
sxf.setCellOptions(62464);
addStyle(sxf);
sxf = new StyleXFRecord(getFonts().getFont(1), NumberFormats.DEFAULT);
sxf.setLocked(true);
sxf.setCellOptions(62464);
addStyle(sxf);
sxf = new StyleXFRecord(getFonts().getFont(1), NumberFormats.DEFAULT);
sxf.setLocked(true);
sxf.setCellOptions(62464);
addStyle(sxf);
sxf = new StyleXFRecord(getFonts().getFont(2), NumberFormats.DEFAULT);
sxf.setLocked(true);
sxf.setCellOptions(62464);
addStyle(sxf);
sxf = new StyleXFRecord(getFonts().getFont(3), NumberFormats.DEFAULT);
sxf.setLocked(true);
sxf.setCellOptions(62464);
addStyle(sxf);
sxf = new StyleXFRecord((FontRecord)styles.getArial10Pt(), NumberFormats.DEFAULT);
sxf.setLocked(true);
sxf.setCellOptions(62464);
addStyle(sxf);
sxf = new StyleXFRecord((FontRecord)styles.getArial10Pt(), NumberFormats.DEFAULT);
sxf.setLocked(true);
sxf.setCellOptions(62464);
addStyle(sxf);
sxf = new StyleXFRecord((FontRecord)styles.getArial10Pt(), NumberFormats.DEFAULT);
sxf.setLocked(true);
sxf.setCellOptions(62464);
addStyle(sxf);
sxf = new StyleXFRecord((FontRecord)styles.getArial10Pt(), NumberFormats.DEFAULT);
sxf.setLocked(true);
sxf.setCellOptions(62464);
addStyle(sxf);
sxf = new StyleXFRecord((FontRecord)styles.getArial10Pt(), NumberFormats.DEFAULT);
sxf.setLocked(true);
sxf.setCellOptions(62464);
addStyle(sxf);
sxf = new StyleXFRecord((FontRecord)styles.getArial10Pt(), NumberFormats.DEFAULT);
sxf.setLocked(true);
sxf.setCellOptions(62464);
addStyle(sxf);
sxf = new StyleXFRecord((FontRecord)styles.getArial10Pt(), NumberFormats.DEFAULT);
sxf.setLocked(true);
sxf.setCellOptions(62464);
addStyle(sxf);
sxf = new StyleXFRecord((FontRecord)styles.getArial10Pt(), NumberFormats.DEFAULT);
sxf.setLocked(true);
sxf.setCellOptions(62464);
addStyle(sxf);
sxf = new StyleXFRecord((FontRecord)styles.getArial10Pt(), NumberFormats.DEFAULT);
sxf.setLocked(true);
sxf.setCellOptions(62464);
addStyle(sxf);
addStyle((XFRecord)styles.getNormalStyle());
sxf = new StyleXFRecord(getFonts().getFont(1), NumberFormats.FORMAT7);
sxf.setLocked(true);
sxf.setCellOptions(63488);
addStyle(sxf);
sxf = new StyleXFRecord(getFonts().getFont(1), NumberFormats.FORMAT5);
sxf.setLocked(true);
sxf.setCellOptions(63488);
addStyle(sxf);
sxf = new StyleXFRecord(getFonts().getFont(1), NumberFormats.FORMAT8);
sxf.setLocked(true);
sxf.setCellOptions(63488);
addStyle(sxf);
sxf = new StyleXFRecord(getFonts().getFont(1), NumberFormats.FORMAT6);
sxf.setLocked(true);
sxf.setCellOptions(63488);
addStyle(sxf);
sxf = new StyleXFRecord(getFonts().getFont(1), NumberFormats.PERCENT_INTEGER);
sxf.setLocked(true);
sxf.setCellOptions(63488);
addStyle(sxf);
} catch (NumFormatRecordsException e) {
Assert.verify(false, e.getMessage());
}
}
}