jxl.read.biff
Class BoundsheetRecord

java.lang.Object
  |
  +--jxl.biff.RecordData
        |
        +--jxl.read.biff.BoundsheetRecord

class BoundsheetRecord
extends RecordData

A boundsheet record, which contains the worksheet name


Inner Class Summary
private static class BoundsheetRecord.Biff7
          Dummy indicators for overloading the constructor
 
Field Summary
static BoundsheetRecord.Biff7 biff7
           
private  int length
          The length of the worksheet name
private  java.lang.String name
          The worksheet name
private  int offset
          The offset into the sheet
private  byte typeFlag
          The type of sheet this is
private  byte visibilityFlag
          The visibility flag
 
Fields inherited from class jxl.biff.RecordData
code, record
 
Constructor Summary
BoundsheetRecord(Record t)
          Constructs this object from the raw data
BoundsheetRecord(Record t, BoundsheetRecord.Biff7 biff7)
          Constructs this object from the raw data
 
Method Summary
 java.lang.String getName()
          Accessor for the worksheet name
 boolean isHidden()
          Accessor for the hidden flag
 boolean isSheet()
          Accessor to determine if this is a worksheet, or some other nefarious type of object
 
Methods inherited from class jxl.biff.RecordData
getCode, getRecord
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

offset

private int offset
The offset into the sheet

typeFlag

private byte typeFlag
The type of sheet this is

visibilityFlag

private byte visibilityFlag
The visibility flag

length

private int length
The length of the worksheet name

name

private java.lang.String name
The worksheet name

biff7

public static BoundsheetRecord.Biff7 biff7
Constructor Detail

BoundsheetRecord

public BoundsheetRecord(Record t)
Constructs this object from the raw data
Parameters:
t - the raw data

BoundsheetRecord

public BoundsheetRecord(Record t,
                        BoundsheetRecord.Biff7 biff7)
Constructs this object from the raw data
Parameters:
t - the raw data
biff7 - a dummy value to tell the record to interpret the data as biff7
Method Detail

getName

public java.lang.String getName()
Accessor for the worksheet name
Returns:
the worksheet name

isHidden

public boolean isHidden()
Accessor for the hidden flag
Returns:
TRUE if this is a hidden sheet, FALSE otherwise

isSheet

public boolean isSheet()
Accessor to determine if this is a worksheet, or some other nefarious type of object
Returns:
TRUE if this is a worksheet, FALSE otherwise