Package jxl.write
Class Boolean
java.lang.Object
jxl.biff.RecordData
jxl.biff.WritableRecordData
jxl.write.biff.CellValue
jxl.write.biff.BooleanRecord
jxl.write.Boolean
- All Implemented Interfaces:
jxl.biff.ByteData
,BooleanCell
,Cell
,WritableCell
A cell, created by user applications, which contains a boolean (or
in some cases an error) value
-
Constructor Summary
ConstructorsConstructorDescriptionBoolean
(int c, int r, boolean val) Constructs a boolean value, which, when added to a spreadsheet, will display the specified value at the column/row position indicated.Boolean
(int c, int r, boolean val, CellFormat st) Constructs a boolean, which, when added to a spreadsheet, will display the specified value at the column/row position with the specified CellFormat.Boolean
(BooleanCell nc) Constructor used internally by the application when making a writable copy of a spreadsheet that has been read in -
Method Summary
Methods inherited from class jxl.write.biff.BooleanRecord
getContents, getData, getType, getValue
Methods inherited from class jxl.write.biff.CellValue
addCellFeatures, getCellFeatures, getCellFormat, getColumn, getRow, getSheet, getWritableCellFeatures, isHidden, removeCellFeatures, removeComment, removeDataValidation, setCellFeatures, setCellFormat
Methods inherited from class jxl.biff.WritableRecordData
getBytes
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface jxl.BooleanCell
getValue
Methods inherited from interface jxl.Cell
getCellFeatures, getCellFormat, getColumn, getContents, getRow, getType, isHidden
Methods inherited from interface jxl.write.WritableCell
getWritableCellFeatures, setCellFeatures, setCellFormat
-
Constructor Details
-
Boolean
public Boolean(int c, int r, boolean val) Constructs a boolean value, which, when added to a spreadsheet, will display the specified value at the column/row position indicated.- Parameters:
c
- the columnr
- the rowval
- the value
-
Boolean
Constructs a boolean, which, when added to a spreadsheet, will display the specified value at the column/row position with the specified CellFormat. The CellFormat may specify font information- Parameters:
c
- the columnr
- the rowval
- the valuest
- the cell format
-
Boolean
Constructor used internally by the application when making a writable copy of a spreadsheet that has been read in- Parameters:
nc
- the cell to copy
-
-
Method Details
-
setValue
public void setValue(boolean val) Sets the boolean value for this cell- Parameters:
val
- the value
-
copyTo
Implementation of the deep copy function- Specified by:
copyTo
in interfaceWritableCell
- Parameters:
col
- the column which the new cell will occupyrow
- the row which the new cell will occupy- Returns:
- a copy of this cell, which can then be added to the sheet
-