public class SelectionRecord extends Record
Description: shows the user's selection on the sheet for write set num refs to 0
TODO : Fully implement reference subrecords. REFERENCE: PG 291 Microsoft Excel 97 Developer's Kit (ISBN: 1-57231-498-2)
Modifier and Type | Class and Description |
---|---|
class |
SelectionRecord.Reference |
Modifier and Type | Field and Description |
---|---|
private byte |
field_1_pane |
private int |
field_2_row_active_cell |
private short |
field_3_col_active_cell |
private short |
field_4_ref_active_cell |
private short |
field_5_num_refs |
private ArrayList |
field_6_refs |
static short |
sid |
Constructor and Description |
---|
SelectionRecord() |
SelectionRecord(RecordInputStream in)
Constructs a Selection record and sets its fields appropriately.
|
Modifier and Type | Method and Description |
---|---|
Object |
clone() |
protected void |
fillFields(RecordInputStream in)
called by the constructor, should set class level fields.
|
short |
getActiveCellCol()
get the active cell's col
|
short |
getActiveCellRef()
get the active cell's reference number
|
int |
getActiveCellRow()
get the active cell's row
|
short |
getNumRefs()
get the number of cell refs (we don't support selection so set to 0
|
byte |
getPane()
get which window pane this is for
|
int |
getRecordSize()
gives the current serialized size of the record.
|
short |
getSid()
return the non static version of the id for this record.
|
int |
serialize(int offset,
byte[] data)
called by the class that is responsible for writing this sucker.
|
void |
setActiveCellCol(short col)
set the active cell's col
|
void |
setActiveCellRef(short ref)
set the active cell's reference number
|
void |
setActiveCellRow(int row)
set the active cell's row
|
void |
setNumRefs(short refs)
set the number of cell refs (we don't support selection so set to 0
|
void |
setPane(byte pane)
set which window pane this is for
|
String |
toString()
get a string representation of the record (for biffview/debugging)
|
protected void |
validateSid(short id)
called by constructor, should throw runtime exception in the event of a
record passed with a differing ID.
|
isInValueSection, isValue, serialize
public static final short sid
private byte field_1_pane
private int field_2_row_active_cell
private short field_3_col_active_cell
private short field_4_ref_active_cell
private short field_5_num_refs
private ArrayList field_6_refs
public SelectionRecord()
public SelectionRecord(RecordInputStream in)
in
- the RecordInputstream to read the record fromprotected void validateSid(short id)
Record
validateSid
in class Record
id
- alleged id for this recordprotected void fillFields(RecordInputStream in)
Record
fillFields
in class Record
in
- the RecordInputstream to read the record frompublic void setPane(byte pane)
pane
- public void setActiveCellRow(int row)
row
- number of active cellpublic void setActiveCellCol(short col)
col
- number of active cellpublic void setActiveCellRef(short ref)
ref
- number of active cellpublic void setNumRefs(short refs)
refs
- - number of referencespublic byte getPane()
public int getActiveCellRow()
public short getActiveCellCol()
public short getActiveCellRef()
public short getNumRefs()
public String toString()
Record
public int serialize(int offset, byte[] data)
Record
public int getRecordSize()
Record
getRecordSize
in class Record
public short getSid()
Record
Copyright © 2016 Open Microscopy Environment