Javadoc fixes
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352084 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7d09669c6a
commit
90f3dd4bde
@ -124,9 +124,9 @@ public class BOFRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a BOFRecord and sets its fields appropriately
|
* Constructs a BOFRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0x809 or an exception will be throw upon validation
|
* @param id id must be 0x809 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public BOFRecord(short id, short size, byte [] data)
|
public BOFRecord(short id, short size, byte [] data)
|
||||||
@ -139,9 +139,9 @@ public class BOFRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a BOFRecord and sets its fields appropriately
|
* Constructs a BOFRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0x809 or an exception will be throw upon validation
|
* @param id id must be 0x809 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset the offset of the record's data
|
* @param offset the offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -79,9 +79,9 @@ public class BackupRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a BackupRecord and sets its fields appropriately
|
* Constructs a BackupRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0x40 or an exception will be throw upon validation
|
* @param id id must be 0x40 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public BackupRecord(short id, short size, byte [] data)
|
public BackupRecord(short id, short size, byte [] data)
|
||||||
@ -92,9 +92,9 @@ public class BackupRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a BackupRecord and sets its fields appropriately
|
* Constructs a BackupRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0x40 or an exception will be throw upon validation
|
* @param id id must be 0x40 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the start of the record's data
|
* @param offset of the start of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -119,7 +119,7 @@ public class BackupRecord
|
|||||||
/**
|
/**
|
||||||
* set the backup flag (0,1)
|
* set the backup flag (0,1)
|
||||||
*
|
*
|
||||||
* @param short backup flag
|
* @param backup backup flag
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public void setBackup(short backup)
|
public void setBackup(short backup)
|
||||||
|
@ -78,9 +78,9 @@ public class BeginRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a BeginRecord record and sets its fields appropriately.
|
* Constructs a BeginRecord record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x1033 or an exception will be throw upon validation
|
* @param id id must be 0x1033 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public BeginRecord(short id, short size, byte [] data)
|
public BeginRecord(short id, short size, byte [] data)
|
||||||
@ -91,9 +91,9 @@ public class BeginRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a BeginRecord record and sets its fields appropriately.
|
* Constructs a BeginRecord record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x1033 or an exception will be throw upon validation
|
* @param id id must be 0x1033 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -88,9 +88,9 @@ public class BlankRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a BlankRecord and sets its fields appropriately
|
* Constructs a BlankRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0x201 or an exception will be throw upon validation
|
* @param id id must be 0x201 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public BlankRecord(short id, short size, byte [] data)
|
public BlankRecord(short id, short size, byte [] data)
|
||||||
@ -101,9 +101,9 @@ public class BlankRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a BlankRecord and sets its fields appropriately
|
* Constructs a BlankRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0x201 or an exception will be throw upon validation
|
* @param id id must be 0x201 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -79,9 +79,9 @@ public class BookBoolRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a BookBoolRecord and sets its fields appropriately
|
* Constructs a BookBoolRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0xDA or an exception will be throw upon validation
|
* @param id id must be 0xDA or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public BookBoolRecord(short id, short size, byte [] data)
|
public BookBoolRecord(short id, short size, byte [] data)
|
||||||
@ -92,9 +92,9 @@ public class BookBoolRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a BookBoolRecord and sets its fields appropriately
|
* Constructs a BookBoolRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0xDA or an exception will be throw upon validation
|
* @param id id must be 0xDA or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -89,9 +89,9 @@ public class BoolErrRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a BoolErr record and sets its fields appropriately.
|
* Constructs a BoolErr record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x205 or an exception will be throw upon validation
|
* @param id id must be 0x205 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public BoolErrRecord(short id, short size, byte [] data)
|
public BoolErrRecord(short id, short size, byte [] data)
|
||||||
@ -102,9 +102,9 @@ public class BoolErrRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a BoolErr record and sets its fields appropriately.
|
* Constructs a BoolErr record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x205 or an exception will be throw upon validation
|
* @param id id must be 0x205 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record
|
* @param offset of the record
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -143,7 +143,7 @@ public class BoolErrRecord
|
|||||||
/**
|
/**
|
||||||
* set the index to the ExtendedFormat
|
* set the index to the ExtendedFormat
|
||||||
* @see org.apache.poi.hssf.record.ExtendedFormatRecord
|
* @see org.apache.poi.hssf.record.ExtendedFormatRecord
|
||||||
* @param index to the XF record
|
* @param xf index to the XF record
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public void setXFIndex(short xf)
|
public void setXFIndex(short xf)
|
||||||
@ -154,7 +154,7 @@ public class BoolErrRecord
|
|||||||
/**
|
/**
|
||||||
* set the boolean value for the cell
|
* set the boolean value for the cell
|
||||||
*
|
*
|
||||||
* @param boolean representing the boolean value
|
* @param value representing the boolean value
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public void setValue(boolean value)
|
public void setValue(boolean value)
|
||||||
@ -167,7 +167,7 @@ public class BoolErrRecord
|
|||||||
/**
|
/**
|
||||||
* set the error value for the cell
|
* set the error value for the cell
|
||||||
*
|
*
|
||||||
* @param error representing the error value
|
* @param value error representing the error value
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public void setValue(byte value)
|
public void setValue(byte value)
|
||||||
|
@ -85,9 +85,9 @@ public class BoundSheetRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a BoundSheetRecord and sets its fields appropriately
|
* Constructs a BoundSheetRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0x85 or an exception will be throw upon validation
|
* @param id id must be 0x85 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public BoundSheetRecord(short id, short size, byte [] data)
|
public BoundSheetRecord(short id, short size, byte [] data)
|
||||||
@ -98,9 +98,9 @@ public class BoundSheetRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a BoundSheetRecord and sets its fields appropriately
|
* Constructs a BoundSheetRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0x85 or an exception will be throw upon validation
|
* @param id id must be 0x85 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -83,9 +83,9 @@ public class CalcCountRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a CalcCountRecord and sets its fields appropriately
|
* Constructs a CalcCountRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0xC or an exception will be throw upon validation
|
* @param id id must be 0xC or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -97,9 +97,9 @@ public class CalcCountRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a CalcCountRecord and sets its fields appropriately
|
* Constructs a CalcCountRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0xC or an exception will be throw upon validation
|
* @param id id must be 0xC or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -99,9 +99,9 @@ public class CalcModeRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a CalcModeRecord and sets its fields appropriately
|
* Constructs a CalcModeRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0xD or an exception will be throw upon validation
|
* @param id id must be 0xD or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public CalcModeRecord(short id, short size, byte [] data)
|
public CalcModeRecord(short id, short size, byte [] data)
|
||||||
@ -112,9 +112,9 @@ public class CalcModeRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a CalcModeRecord and sets its fields appropriately
|
* Constructs a CalcModeRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0xD or an exception will be throw upon validation
|
* @param id id must be 0xD or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's start data
|
* @param offset of the record's start data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -87,8 +87,8 @@ public class ChartFormatRecord
|
|||||||
* Constructs a ChartFormatRecord record and sets its fields appropriately.
|
* Constructs a ChartFormatRecord record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must equal the sid or an exception will be throw upon validation
|
* @param short id must equal the sid or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public ChartFormatRecord(short id, short size, byte [] data)
|
public ChartFormatRecord(short id, short size, byte [] data)
|
||||||
@ -100,8 +100,8 @@ public class ChartFormatRecord
|
|||||||
* Constructs a ChartFormatRecord record and sets its fields appropriately.
|
* Constructs a ChartFormatRecord record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must equal the sid or an exception will be throw upon validation
|
* @param short id must equal the sid or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -84,9 +84,9 @@ public class ChartRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a ChartRecord record and sets its fields appropriately.
|
* Constructs a ChartRecord record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x1002 or an exception will be throw upon validation
|
* @param id id must be 0x1002 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public ChartRecord(short id, short size, byte [] data)
|
public ChartRecord(short id, short size, byte [] data)
|
||||||
@ -97,9 +97,9 @@ public class ChartRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a SeriesRecord record and sets its fields appropriately.
|
* Constructs a SeriesRecord record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x1002 or an exception will be throw upon validation
|
* @param id id must be 0x1002 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -86,9 +86,9 @@ public class CodepageRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a CodepageRecord and sets its fields appropriately
|
* Constructs a CodepageRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0x42 or an exception will be throw upon validation
|
* @param id id must be 0x42 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public CodepageRecord(short id, short size, byte [] data)
|
public CodepageRecord(short id, short size, byte [] data)
|
||||||
@ -99,9 +99,9 @@ public class CodepageRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a CodepageRecord and sets its fields appropriately
|
* Constructs a CodepageRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0x42 or an exception will be throw upon validation
|
* @param id id must be 0x42 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param int offset of the record
|
* @param int offset of the record
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -92,9 +92,9 @@ public class ColumnInfoRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a ColumnInfo record and sets its fields appropriately
|
* Constructs a ColumnInfo record and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0x7d or an exception will be throw upon validation
|
* @param id id must be 0x7d or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public ColumnInfoRecord(short id, short size, byte [] data)
|
public ColumnInfoRecord(short id, short size, byte [] data)
|
||||||
@ -105,9 +105,9 @@ public class ColumnInfoRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a ColumnInfo record and sets its fields appropriately
|
* Constructs a ColumnInfo record and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0x7d or an exception will be throw upon validation
|
* @param id id must be 0x7d or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -83,9 +83,9 @@ public class CountryRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a CountryRecord and sets its fields appropriately
|
* Constructs a CountryRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0x8c or an exception will be throw upon validation
|
* @param id id must be 0x8c or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public CountryRecord(short id, short size, byte [] data)
|
public CountryRecord(short id, short size, byte [] data)
|
||||||
@ -96,9 +96,9 @@ public class CountryRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a CountryRecord and sets its fields appropriately
|
* Constructs a CountryRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0x8c or an exception will be throw upon validation
|
* @param id id must be 0x8c or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -81,9 +81,9 @@ public class DBCellRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a DBCellRecord and sets its fields appropriately
|
* Constructs a DBCellRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0xd7 or an exception will be throw upon validation
|
* @param id id must be 0xd7 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public DBCellRecord(short id, short size, byte [] data)
|
public DBCellRecord(short id, short size, byte [] data)
|
||||||
@ -94,9 +94,9 @@ public class DBCellRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a DBCellRecord and sets its fields appropriately
|
* Constructs a DBCellRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0xd7 or an exception will be throw upon validation
|
* @param id id must be 0xd7 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -79,9 +79,9 @@ public class DSFRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a DBCellRecord and sets its fields appropriately.
|
* Constructs a DBCellRecord and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x161 or an exception will be throw upon validation
|
* @param id id must be 0x161 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public DSFRecord(short id, short size, byte [] data)
|
public DSFRecord(short id, short size, byte [] data)
|
||||||
@ -92,9 +92,9 @@ public class DSFRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a DBCellRecord and sets its fields appropriately.
|
* Constructs a DBCellRecord and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x161 or an exception will be throw upon validation
|
* @param id id must be 0x161 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -79,9 +79,9 @@ public class DateWindow1904Record
|
|||||||
/**
|
/**
|
||||||
* Constructs a DateWindow1904 record and sets its fields appropriately.
|
* Constructs a DateWindow1904 record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x22 or an exception will be throw upon validation
|
* @param id id must be 0x22 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public DateWindow1904Record(short id, short size, byte [] data)
|
public DateWindow1904Record(short id, short size, byte [] data)
|
||||||
@ -92,9 +92,9 @@ public class DateWindow1904Record
|
|||||||
/**
|
/**
|
||||||
* Constructs a DateWindow1904 record and sets its fields appropriately.
|
* Constructs a DateWindow1904 record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x22 or an exception will be throw upon validation
|
* @param id id must be 0x22 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -79,9 +79,9 @@ public class DefaultColWidthRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a DefaultColumnWidth record and sets its fields appropriately.
|
* Constructs a DefaultColumnWidth record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x55 or an exception will be throw upon validation
|
* @param id id must be 0x55 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public DefaultColWidthRecord(short id, short size, byte [] data)
|
public DefaultColWidthRecord(short id, short size, byte [] data)
|
||||||
@ -92,9 +92,9 @@ public class DefaultColWidthRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a DefaultColumnWidth record and sets its fields appropriately.
|
* Constructs a DefaultColumnWidth record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x55 or an exception will be throw upon validation
|
* @param id id must be 0x55 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -80,9 +80,9 @@ public class DefaultRowHeightRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a DefaultRowHeight record and sets its fields appropriately.
|
* Constructs a DefaultRowHeight record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x225 or an exception will be throw upon validation
|
* @param id id must be 0x225 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public DefaultRowHeightRecord(short id, short size, byte [] data)
|
public DefaultRowHeightRecord(short id, short size, byte [] data)
|
||||||
@ -93,9 +93,9 @@ public class DefaultRowHeightRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a DefaultRowHeight record and sets its fields appropriately.
|
* Constructs a DefaultRowHeight record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x225 or an exception will be throw upon validation
|
* @param id id must be 0x225 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the records data
|
* @param offset of the records data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -131,7 +131,7 @@ public class DefaultRowHeightRecord
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* set the default row height
|
* set the default row height
|
||||||
* @param rowheight for undefined rows/rows w/undefined height
|
* @param height for undefined rows/rows w/undefined height
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public void setRowHeight(short height)
|
public void setRowHeight(short height)
|
||||||
|
@ -82,9 +82,9 @@ public class DeltaRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Delta record and sets its fields appropriately.
|
* Constructs a Delta record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x10 or an exception will be throw upon validation
|
* @param id id must be 0x10 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public DeltaRecord(short id, short size, byte [] data)
|
public DeltaRecord(short id, short size, byte [] data)
|
||||||
@ -95,9 +95,9 @@ public class DeltaRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Delta record and sets its fields appropriately.
|
* Constructs a Delta record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x10 or an exception will be throw upon validation
|
* @param id id must be 0x10 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of record data
|
* @param offset of record data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -83,9 +83,9 @@ public class DimensionsRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Dimensions record and sets its fields appropriately.
|
* Constructs a Dimensions record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x200 or an exception will be throw upon validation
|
* @param id id must be 0x200 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public DimensionsRecord(short id, short size, byte [] data)
|
public DimensionsRecord(short id, short size, byte [] data)
|
||||||
@ -96,9 +96,9 @@ public class DimensionsRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Dimensions record and sets its fields appropriately.
|
* Constructs a Dimensions record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x200 or an exception will be throw upon validation
|
* @param id id must be 0x200 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -146,7 +146,7 @@ public class DimensionsRecord
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* set the first column number for the sheet
|
* set the first column number for the sheet
|
||||||
* @param column - first column on the sheet
|
* @param col first column on the sheet
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public void setFirstCol(short col)
|
public void setFirstCol(short col)
|
||||||
|
@ -79,9 +79,9 @@ public class EOFRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a EOFRecord record and sets its fields appropriately.
|
* Constructs a EOFRecord record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x0A or an exception will be throw upon validation
|
* @param id id must be 0x0A or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public EOFRecord(short id, short size, byte [] data)
|
public EOFRecord(short id, short size, byte [] data)
|
||||||
@ -92,9 +92,9 @@ public class EOFRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a EOFRecord record and sets its fields appropriately.
|
* Constructs a EOFRecord record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x0A or an exception will be throw upon validation
|
* @param id id must be 0x0A or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -78,9 +78,9 @@ public class EndRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a EndRecord record and sets its fields appropriately.
|
* Constructs a EndRecord record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x1034 or an exception will be throw upon validation
|
* @param id id must be 0x1034 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public EndRecord(short id, short size, byte [] data)
|
public EndRecord(short id, short size, byte [] data)
|
||||||
@ -91,9 +91,9 @@ public class EndRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a EndRecord record and sets its fields appropriately.
|
* Constructs a EndRecord record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x1034 or an exception will be throw upon validation
|
* @param id id must be 0x1034 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -87,9 +87,9 @@ public class ExtSSTRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a EOFRecord record and sets its fields appropriately.
|
* Constructs a EOFRecord record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xff or an exception will be throw upon validation
|
* @param id id must be 0xff or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public ExtSSTRecord(short id, short size, byte [] data)
|
public ExtSSTRecord(short id, short size, byte [] data)
|
||||||
@ -100,9 +100,9 @@ public class ExtSSTRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a EOFRecord record and sets its fields appropriately.
|
* Constructs a EOFRecord record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xff or an exception will be throw upon validation
|
* @param id id must be 0xff or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -214,9 +214,9 @@ public class ExtendedFormatRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an ExtendedFormat record and sets its fields appropriately.
|
* Constructs an ExtendedFormat record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xE0 or an exception will be throw upon validation
|
* @param id id must be 0xE0 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public ExtendedFormatRecord(short id, short size, byte [] data)
|
public ExtendedFormatRecord(short id, short size, byte [] data)
|
||||||
@ -227,9 +227,9 @@ public class ExtendedFormatRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an ExtendedFormat record and sets its fields appropriately.
|
* Constructs an ExtendedFormat record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xE0 or an exception will be throw upon validation
|
* @param id id must be 0xE0 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -85,9 +85,9 @@ public class FnGroupCountRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a FnGroupCount record and sets its fields appropriately.
|
* Constructs a FnGroupCount record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x9c or an exception will be throw upon validation
|
* @param id id must be 0x9c or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public FnGroupCountRecord(short id, short size, byte [] data)
|
public FnGroupCountRecord(short id, short size, byte [] data)
|
||||||
@ -98,9 +98,9 @@ public class FnGroupCountRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a FnGroupCount record and sets its fields appropriately.
|
* Constructs a FnGroupCount record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x9c or an exception will be throw upon validation
|
* @param id id must be 0x9c or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -114,10 +114,10 @@ public class FontRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Font record and sets its fields appropriately.
|
* Constructs a Font record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x31 (NOT 0x231 see MSKB #Q184647 for an "explanation of
|
* @param id id must be 0x31 (NOT 0x231 see MSKB #Q184647 for an "explanation of
|
||||||
* this bug in the documentation) or an exception will be throw upon validation
|
* this bug in the documentation) or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public FontRecord(short id, short size, byte [] data)
|
public FontRecord(short id, short size, byte [] data)
|
||||||
@ -128,10 +128,10 @@ public class FontRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Font record and sets its fields appropriately.
|
* Constructs a Font record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x31 (NOT 0x231 see MSKB #Q184647 for an "explanation of
|
* @param id id must be 0x31 (NOT 0x231 see MSKB #Q184647 for an "explanation of
|
||||||
* this bug in the documentation) or an exception will be throw upon validation
|
* this bug in the documentation) or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -80,9 +80,9 @@ public class FooterRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a FooterRecord record and sets its fields appropriately.
|
* Constructs a FooterRecord record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x15 or an exception will be throw upon validation
|
* @param id id must be 0x15 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public FooterRecord(short id, short size, byte [] data)
|
public FooterRecord(short id, short size, byte [] data)
|
||||||
@ -93,9 +93,9 @@ public class FooterRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a FooterRecord record and sets its fields appropriately.
|
* Constructs a FooterRecord record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x15 or an exception will be throw upon validation
|
* @param id id must be 0x15 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -83,9 +83,9 @@ public class FormatRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Format record and sets its fields appropriately.
|
* Constructs a Format record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x41e or an exception will be throw upon validation
|
* @param id id must be 0x41e or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public FormatRecord(short id, short size, byte [] data)
|
public FormatRecord(short id, short size, byte [] data)
|
||||||
@ -96,9 +96,9 @@ public class FormatRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Format record and sets its fields appropriately.
|
* Constructs a Format record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x41e or an exception will be throw upon validation
|
* @param id id must be 0x41e or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -98,10 +98,10 @@ public class FormulaRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Formula record and sets its fields appropriately.
|
* Constructs a Formula record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x06 (NOT 0x406 see MSKB #Q184647 for an "explanation of
|
* @param id id must be 0x06 (NOT 0x406 see MSKB #Q184647 for an "explanation of
|
||||||
* this bug in the documentation) or an exception will be throw upon validation
|
* this bug in the documentation) or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public FormulaRecord(short id, short size, byte [] data)
|
public FormulaRecord(short id, short size, byte [] data)
|
||||||
@ -112,10 +112,10 @@ public class FormulaRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Formula record and sets its fields appropriately.
|
* Constructs a Formula record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x06 (NOT 0x406 see MSKB #Q184647 for an "explanation of
|
* @param id id must be 0x06 (NOT 0x406 see MSKB #Q184647 for an "explanation of
|
||||||
* this bug in the documentation) or an exception will be throw upon validation
|
* this bug in the documentation) or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -82,9 +82,9 @@ public class GridsetRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a GridSet record and sets its fields appropriately.
|
* Constructs a GridSet record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x82 or an exception will be throw upon validation
|
* @param id id must be 0x82 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public GridsetRecord(short id, short size, byte [] data)
|
public GridsetRecord(short id, short size, byte [] data)
|
||||||
@ -95,9 +95,9 @@ public class GridsetRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a GridSet record and sets its fields appropriately.
|
* Constructs a GridSet record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x82 or an exception will be throw upon validation
|
* @param id id must be 0x82 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -81,9 +81,9 @@ public class GutsRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Guts record and sets its fields appropriately.
|
* Constructs a Guts record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x80 or an exception will be throw upon validation
|
* @param id id must be 0x80 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public GutsRecord(short id, short size, byte [] data)
|
public GutsRecord(short id, short size, byte [] data)
|
||||||
@ -94,9 +94,9 @@ public class GutsRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Guts record and sets its fields appropriately.
|
* Constructs a Guts record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x80 or an exception will be throw upon validation
|
* @param id id must be 0x80 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -78,9 +78,9 @@ public class HCenterRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an HCenter record and sets its fields appropriately.
|
* Constructs an HCenter record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x83 or an exception will be throw upon validation
|
* @param id id must be 0x83 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public HCenterRecord(short id, short size, byte [] data)
|
public HCenterRecord(short id, short size, byte [] data)
|
||||||
@ -91,9 +91,9 @@ public class HCenterRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an HCenter record and sets its fields appropriately.
|
* Constructs an HCenter record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x83 or an exception will be throw upon validation
|
* @param id id must be 0x83 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -80,9 +80,9 @@ public class HeaderRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an Header record and sets its fields appropriately.
|
* Constructs an Header record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x14 or an exception will be throw upon validation
|
* @param id id must be 0x14 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public HeaderRecord(short id, short size, byte [] data)
|
public HeaderRecord(short id, short size, byte [] data)
|
||||||
@ -93,9 +93,9 @@ public class HeaderRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an Header record and sets its fields appropriately.
|
* Constructs an Header record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x14 or an exception will be throw upon validation
|
* @param id id must be 0x14 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -81,9 +81,9 @@ public class HideObjRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an HideObj record and sets its fields appropriately.
|
* Constructs an HideObj record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x8d or an exception will be throw upon validation
|
* @param id id must be 0x8d or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public HideObjRecord(short id, short size, byte [] data)
|
public HideObjRecord(short id, short size, byte [] data)
|
||||||
@ -94,9 +94,9 @@ public class HideObjRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an HideObj record and sets its fields appropriately.
|
* Constructs an HideObj record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x8d or an exception will be throw upon validation
|
* @param id id must be 0x8d or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -86,9 +86,9 @@ public class IndexRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an Index record and sets its fields appropriately.
|
* Constructs an Index record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x208 or an exception will be throw upon validation
|
* @param id id must be 0x208 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public IndexRecord(short id, short size, byte [] data)
|
public IndexRecord(short id, short size, byte [] data)
|
||||||
@ -99,9 +99,9 @@ public class IndexRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an Index record and sets its fields appropriately.
|
* Constructs an Index record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x208 or an exception will be throw upon validation
|
* @param id id must be 0x208 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of record data
|
* @param offset of record data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -78,9 +78,9 @@ public class InterfaceEndRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an InterfaceEnd record and sets its fields appropriately.
|
* Constructs an InterfaceEnd record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xe2 or an exception will be throw upon validation
|
* @param id id must be 0xe2 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public InterfaceEndRecord(short id, short size, byte [] data)
|
public InterfaceEndRecord(short id, short size, byte [] data)
|
||||||
@ -91,9 +91,9 @@ public class InterfaceEndRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an InterfaceEnd record and sets its fields appropriately.
|
* Constructs an InterfaceEnd record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xe2 or an exception will be throw upon validation
|
* @param id id must be 0xe2 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the data
|
* @param offset of the data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -84,9 +84,9 @@ public class InterfaceHdrRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an Codepage record and sets its fields appropriately.
|
* Constructs an Codepage record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xe1 or an exception will be throw upon validation
|
* @param id id must be 0xe1 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public InterfaceHdrRecord(short id, short size, byte [] data)
|
public InterfaceHdrRecord(short id, short size, byte [] data)
|
||||||
@ -97,9 +97,9 @@ public class InterfaceHdrRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an Codepage record and sets its fields appropriately.
|
* Constructs an Codepage record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xe1 or an exception will be throw upon validation
|
* @param id id must be 0xe1 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -81,9 +81,9 @@ public class IterationRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an Iteration record and sets its fields appropriately.
|
* Constructs an Iteration record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x11 or an exception will be throw upon validation
|
* @param id id must be 0x11 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public IterationRecord(short id, short size, byte [] data)
|
public IterationRecord(short id, short size, byte [] data)
|
||||||
@ -94,9 +94,9 @@ public class IterationRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an Iteration record and sets its fields appropriately.
|
* Constructs an Iteration record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x11 or an exception will be throw upon validation
|
* @param id id must be 0x11 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -93,9 +93,9 @@ public class LabelRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an Label record and sets its fields appropriately.
|
* Constructs an Label record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x204 or an exception will be throw upon validation
|
* @param id id must be 0x204 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public LabelRecord(short id, short size, byte [] data)
|
public LabelRecord(short id, short size, byte [] data)
|
||||||
@ -106,9 +106,9 @@ public class LabelRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an Label record and sets its fields appropriately.
|
* Constructs an Label record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x204 or an exception will be throw upon validation
|
* @param id id must be 0x204 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record
|
* @param offset of the record
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -83,9 +83,9 @@ public class LabelSSTRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an LabelSST record and sets its fields appropriately.
|
* Constructs an LabelSST record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xfd or an exception will be throw upon validation
|
* @param id id must be 0xfd or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public LabelSSTRecord(short id, short size, byte [] data)
|
public LabelSSTRecord(short id, short size, byte [] data)
|
||||||
@ -96,9 +96,9 @@ public class LabelSSTRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an LabelSST record and sets its fields appropriately.
|
* Constructs an LabelSST record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xfd or an exception will be throw upon validation
|
* @param id id must be 0xfd or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -80,9 +80,9 @@ public class MMSRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a MMS record and sets its fields appropriately.
|
* Constructs a MMS record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xc1 or an exception will be throw upon validation
|
* @param id id must be 0xc1 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public MMSRecord(short id, short size, byte [] data)
|
public MMSRecord(short id, short size, byte [] data)
|
||||||
@ -93,9 +93,9 @@ public class MMSRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a MMS record and sets its fields appropriately.
|
* Constructs a MMS record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xc1 or an exception will be throw upon validation
|
* @param id id must be 0xc1 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the data
|
* @param offset of the data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -82,9 +82,9 @@ public class MergeCellsRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a MergedCellsRecord and sets its fields appropriately
|
* Constructs a MergedCellsRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0xe5 or an exception will be throw upon validation
|
* @param id id must be 0xe5 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public MergeCellsRecord(short sid, short size, byte [] data)
|
public MergeCellsRecord(short sid, short size, byte [] data)
|
||||||
@ -95,9 +95,9 @@ public class MergeCellsRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a MergedCellsRecord and sets its fields appropriately
|
* Constructs a MergedCellsRecord and sets its fields appropriately
|
||||||
*
|
*
|
||||||
* @param short id must be 0xe5 or an exception will be throw upon validation
|
* @param id id must be 0xe5 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset the offset of the record's data
|
* @param offset the offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -92,9 +92,9 @@ public class MulBlankRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a MulBlank record and sets its fields appropriately.
|
* Constructs a MulBlank record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xbe or an exception will be throw upon validation
|
* @param id id must be 0xbe or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public MulBlankRecord(short id, short size, byte [] data)
|
public MulBlankRecord(short id, short size, byte [] data)
|
||||||
@ -105,9 +105,9 @@ public class MulBlankRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a MulBlank record and sets its fields appropriately.
|
* Constructs a MulBlank record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xbe or an exception will be throw upon validation
|
* @param id id must be 0xbe or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -90,9 +90,9 @@ public class MulRKRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a MulRK record and sets its fields appropriately.
|
* Constructs a MulRK record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xbd or an exception will be throw upon validation
|
* @param id id must be 0xbd or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public MulRKRecord(short id, short size, byte [] data)
|
public MulRKRecord(short id, short size, byte [] data)
|
||||||
@ -103,9 +103,9 @@ public class MulRKRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a MulRK record and sets its fields appropriately.
|
* Constructs a MulRK record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xbd or an exception will be throw upon validation
|
* @param id id must be 0xbd or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of data
|
* @param offset of data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -89,9 +89,9 @@ public class NumberRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Number record and sets its fields appropriately.
|
* Constructs a Number record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x203 or an exception will be throw upon validation
|
* @param id id must be 0x203 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public NumberRecord(short id, short size, byte [] data)
|
public NumberRecord(short id, short size, byte [] data)
|
||||||
@ -102,9 +102,9 @@ public class NumberRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Number record and sets its fields appropriately.
|
* Constructs a Number record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x203 or an exception will be throw upon validation
|
* @param id id must be 0x203 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the data
|
* @param offset of the data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -78,9 +78,9 @@ public class PasswordRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Password record and sets its fields appropriately.
|
* Constructs a Password record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x13 or an exception will be throw upon validation
|
* @param id id must be 0x13 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public PasswordRecord(short id, short size, byte [] data)
|
public PasswordRecord(short id, short size, byte [] data)
|
||||||
@ -91,9 +91,9 @@ public class PasswordRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Password record and sets its fields appropriately.
|
* Constructs a Password record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x13 or an exception will be throw upon validation
|
* @param id id must be 0x13 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the data
|
* @param offset of the data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -79,9 +79,9 @@ public class PasswordRev4Record
|
|||||||
/**
|
/**
|
||||||
* Constructs a PasswordRev4 (PROT4REVPASS) record and sets its fields appropriately.
|
* Constructs a PasswordRev4 (PROT4REVPASS) record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x1bc or an exception will be throw upon validation
|
* @param id id must be 0x1bc or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public PasswordRev4Record(short id, short size, byte [] data)
|
public PasswordRev4Record(short id, short size, byte [] data)
|
||||||
@ -92,9 +92,9 @@ public class PasswordRev4Record
|
|||||||
/**
|
/**
|
||||||
* Constructs a PasswordRev4 (PROT4REVPASS) record and sets its fields appropriately.
|
* Constructs a PasswordRev4 (PROT4REVPASS) record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x1bc or an exception will be throw upon validation
|
* @param id id must be 0x1bc or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the data
|
* @param offset of the data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -79,9 +79,9 @@ public class PrecisionRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Precision record and sets its fields appropriately.
|
* Constructs a Precision record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xe or an exception will be throw upon validation
|
* @param id id must be 0xe or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public PrecisionRecord(short id, short size, byte [] data)
|
public PrecisionRecord(short id, short size, byte [] data)
|
||||||
@ -92,9 +92,9 @@ public class PrecisionRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Precision record and sets its fields appropriately.
|
* Constructs a Precision record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xe or an exception will be throw upon validation
|
* @param id id must be 0xe or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record
|
* @param offset of the record
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -78,9 +78,9 @@ public class PrintGridlinesRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a PrintGridlines record and sets its fields appropriately.
|
* Constructs a PrintGridlines record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x2b or an exception will be throw upon validation
|
* @param id id must be 0x2b or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public PrintGridlinesRecord(short id, short size, byte [] data)
|
public PrintGridlinesRecord(short id, short size, byte [] data)
|
||||||
@ -91,9 +91,9 @@ public class PrintGridlinesRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a PrintGridlines record and sets its fields appropriately.
|
* Constructs a PrintGridlines record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x2b or an exception will be throw upon validation
|
* @param id id must be 0x2b or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record data
|
* @param offset of the record data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -79,9 +79,9 @@ public class PrintHeadersRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a PrintHeaders record and sets its fields appropriately.
|
* Constructs a PrintHeaders record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x2a or an exception will be throw upon validation
|
* @param id id must be 0x2a or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public PrintHeadersRecord(short id, short size, byte [] data)
|
public PrintHeadersRecord(short id, short size, byte [] data)
|
||||||
@ -92,9 +92,9 @@ public class PrintHeadersRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a PrintHeaders record and sets its fields appropriately.
|
* Constructs a PrintHeaders record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x2a or an exception will be throw upon validation
|
* @param id id must be 0x2a or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the data
|
* @param offset of the data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -108,9 +108,9 @@ public class PrintSetupRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a PrintSetup (SETUP) record and sets its fields appropriately.
|
* Constructs a PrintSetup (SETUP) record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xa1 or an exception will be throw upon validation
|
* @param id id must be 0xa1 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public PrintSetupRecord(short id, short size, byte [] data)
|
public PrintSetupRecord(short id, short size, byte [] data)
|
||||||
@ -121,9 +121,9 @@ public class PrintSetupRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a PrintSetup (SETUP) record and sets its fields appropriately.
|
* Constructs a PrintSetup (SETUP) record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xa1 or an exception will be throw upon validation
|
* @param id id must be 0xa1 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public PrintSetupRecord(short id, short size, byte [] data, int offset)
|
public PrintSetupRecord(short id, short size, byte [] data, int offset)
|
||||||
|
@ -79,9 +79,9 @@ public class ProtectionRev4Record
|
|||||||
/**
|
/**
|
||||||
* Constructs a ProtectionRev4 record and sets its fields appropriately.
|
* Constructs a ProtectionRev4 record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x1af or an exception will be throw upon validation
|
* @param id id must be 0x1af or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public ProtectionRev4Record(short id, short size, byte [] data)
|
public ProtectionRev4Record(short id, short size, byte [] data)
|
||||||
@ -92,9 +92,9 @@ public class ProtectionRev4Record
|
|||||||
/**
|
/**
|
||||||
* Constructs a ProtectionRev4 record and sets its fields appropriately.
|
* Constructs a ProtectionRev4 record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x1af or an exception will be throw upon validation
|
* @param id id must be 0x1af or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the data
|
* @param offset of the data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -96,9 +96,9 @@ public class RKRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a RK record and sets its fields appropriately.
|
* Constructs a RK record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x27e or an exception will be throw upon validation
|
* @param id id must be 0x27e or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public RKRecord(short id, short size, byte [] data)
|
public RKRecord(short id, short size, byte [] data)
|
||||||
@ -109,9 +109,9 @@ public class RKRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a RK record and sets its fields appropriately.
|
* Constructs a RK record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x27e or an exception will be throw upon validation
|
* @param id id must be 0x27e or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the data
|
* @param offset of the data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -80,9 +80,9 @@ public class RefModeRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a RefMode record and sets its fields appropriately.
|
* Constructs a RefMode record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xf or an exception will be throw upon validation
|
* @param id id must be 0xf or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public RefModeRecord(short id, short size, byte [] data)
|
public RefModeRecord(short id, short size, byte [] data)
|
||||||
@ -93,9 +93,9 @@ public class RefModeRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a RefMode record and sets its fields appropriately.
|
* Constructs a RefMode record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0xf or an exception will be throw upon validation
|
* @param id id must be 0xf or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -79,9 +79,9 @@ public class RefreshAllRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a RefreshAll record and sets its fields appropriately.
|
* Constructs a RefreshAll record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x187 or an exception will be throw upon validation
|
* @param id id must be 0x187 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public RefreshAllRecord(short id, short size, byte [] data)
|
public RefreshAllRecord(short id, short size, byte [] data)
|
||||||
@ -92,9 +92,9 @@ public class RefreshAllRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a RefreshAll record and sets its fields appropriately.
|
* Constructs a RefreshAll record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x187 or an exception will be throw upon validation
|
* @param id id must be 0x187 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record data
|
* @param offset of the record data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -96,9 +96,9 @@ public class RowRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Row record and sets its fields appropriately.
|
* Constructs a Row record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x208 or an exception will be throw upon validation
|
* @param id id must be 0x208 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public RowRecord(short id, short size, byte [] data)
|
public RowRecord(short id, short size, byte [] data)
|
||||||
@ -109,9 +109,9 @@ public class RowRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Row record and sets its fields appropriately.
|
* Constructs a Row record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x208 or an exception will be throw upon validation
|
* @param id id must be 0x208 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record data
|
* @param offset of the record data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -78,9 +78,9 @@ public class SaveRecalcRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an SaveRecalc record and sets its fields appropriately.
|
* Constructs an SaveRecalc record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x5f or an exception will be throw upon validation
|
* @param id id must be 0x5f or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public SaveRecalcRecord(short id, short size, byte [] data)
|
public SaveRecalcRecord(short id, short size, byte [] data)
|
||||||
@ -91,9 +91,9 @@ public class SaveRecalcRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs an SaveRecalc record and sets its fields appropriately.
|
* Constructs an SaveRecalc record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x5f or an exception will be throw upon validation
|
* @param id id must be 0x5f or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the the data
|
* @param offset of the the data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -88,9 +88,9 @@ public class SelectionRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Selection record and sets its fields appropriately.
|
* Constructs a Selection record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x1d or an exception will be throw upon validation
|
* @param id id must be 0x1d or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public SelectionRecord(short id, short size, byte [] data)
|
public SelectionRecord(short id, short size, byte [] data)
|
||||||
@ -101,9 +101,9 @@ public class SelectionRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Selection record and sets its fields appropriately.
|
* Constructs a Selection record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x1d or an exception will be throw upon validation
|
* @param id id must be 0x1d or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -91,9 +91,9 @@ public class StyleRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Style record and sets its fields appropriately.
|
* Constructs a Style record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x293 or an exception will be throw upon validation
|
* @param id id must be 0x293 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public StyleRecord(short id, short size, byte [] data)
|
public StyleRecord(short id, short size, byte [] data)
|
||||||
@ -104,9 +104,9 @@ public class StyleRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a Style record and sets its fields appropriately.
|
* Constructs a Style record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x293 or an exception will be throw upon validation
|
* @param id id must be 0x293 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset
|
* @param offset
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -79,9 +79,9 @@ public class TabIdRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a TabID record and sets its fields appropriately.
|
* Constructs a TabID record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x13d or an exception will be throw upon validation
|
* @param id id must be 0x13d or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public TabIdRecord(short id, short size, byte [] data)
|
public TabIdRecord(short id, short size, byte [] data)
|
||||||
@ -92,9 +92,9 @@ public class TabIdRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a TabID record and sets its fields appropriately.
|
* Constructs a TabID record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x13d or an exception will be throw upon validation
|
* @param id id must be 0x13d or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record
|
* @param offset of the record
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -81,9 +81,9 @@ public class UseSelFSRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a UseSelFS record and sets its fields appropriately.
|
* Constructs a UseSelFS record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x160 or an exception will be throw upon validation
|
* @param id id must be 0x160 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public UseSelFSRecord(short id, short size, byte [] data)
|
public UseSelFSRecord(short id, short size, byte [] data)
|
||||||
@ -94,9 +94,9 @@ public class UseSelFSRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a UseSelFS record and sets its fields appropriately.
|
* Constructs a UseSelFS record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x160 or an exception will be throw upon validation
|
* @param id id must be 0x160 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of record
|
* @param offset of record
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -78,9 +78,9 @@ public class VCenterRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a VCENTER record and sets its fields appropriately.
|
* Constructs a VCENTER record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x84 or an exception will be throw upon validation
|
* @param id id must be 0x84 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public VCenterRecord(short id, short size, byte [] data)
|
public VCenterRecord(short id, short size, byte [] data)
|
||||||
@ -91,9 +91,9 @@ public class VCenterRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a VCENTER record and sets its fields appropriately.
|
* Constructs a VCENTER record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x84 or an exception will be throw upon validation
|
* @param id id must be 0x84 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -108,9 +108,9 @@ public class WSBoolRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a WSBool record and sets its fields appropriately.
|
* Constructs a WSBool record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x81 or an exception will be throw upon validation
|
* @param id id must be 0x81 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public WSBoolRecord(short id, short size, byte [] data)
|
public WSBoolRecord(short id, short size, byte [] data)
|
||||||
@ -121,9 +121,9 @@ public class WSBoolRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a WSBool record and sets its fields appropriately.
|
* Constructs a WSBool record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x81 or an exception will be throw upon validation
|
* @param id id must be 0x81 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public WSBoolRecord(short id, short size, byte [] data, int offset)
|
public WSBoolRecord(short id, short size, byte [] data, int offset)
|
||||||
|
@ -104,9 +104,9 @@ public class WindowOneRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a WindowOne record and sets its fields appropriately.
|
* Constructs a WindowOne record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x3d or an exception will be throw upon validation
|
* @param id id must be 0x3d or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public WindowOneRecord(short id, short size, byte [] data)
|
public WindowOneRecord(short id, short size, byte [] data)
|
||||||
@ -117,9 +117,9 @@ public class WindowOneRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a WindowOne record and sets its fields appropriately.
|
* Constructs a WindowOne record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x3d or an exception will be throw upon validation
|
* @param id id must be 0x3d or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public WindowOneRecord(short id, short size, byte [] data, int offset)
|
public WindowOneRecord(short id, short size, byte [] data, int offset)
|
||||||
|
@ -78,9 +78,9 @@ public class WindowProtectRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a WindowProtect record and sets its fields appropriately.
|
* Constructs a WindowProtect record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x19 or an exception will be throw upon validation
|
* @param id id must be 0x19 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public WindowProtectRecord(short id, short size, byte [] data)
|
public WindowProtectRecord(short id, short size, byte [] data)
|
||||||
@ -91,9 +91,9 @@ public class WindowProtectRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a WindowProtect record and sets its fields appropriately.
|
* Constructs a WindowProtect record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x19 or an exception will be throw upon validation
|
* @param id id must be 0x19 or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -107,9 +107,9 @@ public class WindowTwoRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a WindowTwo record and sets its fields appropriately.
|
* Constructs a WindowTwo record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x23e or an exception will be throw upon validation
|
* @param id id must be 0x23e or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public WindowTwoRecord(short id, short size, byte [] data)
|
public WindowTwoRecord(short id, short size, byte [] data)
|
||||||
@ -120,9 +120,9 @@ public class WindowTwoRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a WindowTwo record and sets its fields appropriately.
|
* Constructs a WindowTwo record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x23e or an exception will be throw upon validation
|
* @param id id must be 0x23e or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -81,9 +81,9 @@ public class WriteAccessRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a WriteAccess record and sets its fields appropriately.
|
* Constructs a WriteAccess record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x5c or an exception will be throw upon validation
|
* @param id id must be 0x5c or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public WriteAccessRecord(short id, short size, byte [] data)
|
public WriteAccessRecord(short id, short size, byte [] data)
|
||||||
@ -94,9 +94,9 @@ public class WriteAccessRecord
|
|||||||
/**
|
/**
|
||||||
* Constructs a WriteAccess record and sets its fields appropriately.
|
* Constructs a WriteAccess record and sets its fields appropriately.
|
||||||
*
|
*
|
||||||
* @param short id must be 0x5c or an exception will be throw upon validation
|
* @param id id must be 0x5c or an exception will be throw upon validation
|
||||||
* @param short size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param byte[] data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record data
|
* @param offset of the record data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user