📄 footerrecord.java
字号:
// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi
// Source File Name: FooterRecord.java
package jxl.read.biff;
import jxl.WorkbookSettings;
import jxl.biff.*;
// Referenced classes of package jxl.read.biff:
// Record
public class FooterRecord extends RecordData
{
private static class Biff7
{
private Biff7()
{
}
Biff7(_cls1 x0)
{
this();
}
}
private String footer;
public static Biff7 biff7 = new Biff7(null);
FooterRecord(Record t, WorkbookSettings ws)
{
super(t);
byte data[] = getRecord().getData();
if(data.length == 0)
return;
int chars = IntegerHelper.getInt(data[0], data[1]);
boolean unicode = data[2] == 1;
if(unicode)
footer = StringHelper.getUnicodeString(data, chars, 3);
else
footer = StringHelper.getString(data, chars, 3, ws);
}
FooterRecord(Record t, WorkbookSettings ws, Biff7 dummy)
{
super(t);
byte data[] = getRecord().getData();
if(data.length == 0)
{
return;
} else
{
int chars = data[0];
footer = StringHelper.getString(data, chars, 1, ws);
return;
}
}
String getFooter()
{
return footer;
}
// Unreferenced inner classes:
/* anonymous class */
static class _cls1
{
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -