case GutsRecord.sid: return new GutsRecord(in);
case HCenterRecord.sid: return new HCenterRecord(in);
case HeaderRecord.sid: return new HeaderRecord(in);
- case HeaderFooterRecord.sid: return new HeaderFooterRecord(in);
case HideObjRecord.sid: return new HideObjRecord(in);
case HorizontalPageBreakRecord.sid: return new HorizontalPageBreakRecord(in);
case HyperlinkRecord.sid: return new HyperlinkRecord(in);
case TopMarginRecord.sid: return new TopMarginRecord(in);
case UnitsRecord.sid: return new UnitsRecord(in);
case UseSelFSRecord.sid: return new UseSelFSRecord(in);
- case UserSViewBegin.sid: return new UserSViewBegin(in);
case VCenterRecord.sid: return new VCenterRecord(in);
case ValueRangeRecord.sid: return new ValueRangeRecord(in);
case VerticalPageBreakRecord.sid: return new VerticalPageBreakRecord(in);
boolean noint = false;
boolean out = false;
boolean rawhex = false;
- boolean header = true;
+ boolean noheader = false;
File file = null;
for (int i=0; i<nArgs; i++) {
String arg = args[i];
} else if ("--rawhex".equals(arg)) {
rawhex = true;
} else if ("--noheader".equals(arg)) {
- header = true;
+ noheader = false;
} else {
throw new CommandParseException("Unexpected option '" + arg + "'");
}
if (file == null) {
throw new CommandParseException("Biff viewer needs a filename");
}
- return new CommandArgs(biffhex, noint, out, rawhex, header, file);
+ return new CommandArgs(biffhex, noint, out, rawhex, noheader, file);
}
public boolean shouldDumpBiffHex() {
return _biffhex;