Package io.keikai.model
Interface CellStyleHolder
-
- All Known Subinterfaces:
SCell
,SColumn
,SColumnArray
,SRow
- All Known Implementing Classes:
AbstractCellAdv
,AbstractColumnArrayAdv
,AbstractRowAdv
,CellImpl
,ColumnArrayImpl
,RowImpl
public interface CellStyleHolder
the style holder interface- Since:
- 3.5.0
- Author:
- Dennis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SCellStyle
getCellStyle()
Get the style, if it doesn't has local style, it will possible look up it's parent's styleSCellStyle
getCellStyle(boolean local)
Get the cell style locally or look up from the parentvoid
setCellStyle(SCellStyle cellStyle)
Set the local style
-
-
-
Method Detail
-
getCellStyle
SCellStyle getCellStyle()
Get the style, if it doesn't has local style, it will possible look up it's parent's style- See Also:
getCellStyle(boolean)
-
setCellStyle
void setCellStyle(SCellStyle cellStyle)
Set the local style- Parameters:
cellStyle
- the style to set, null to clean local style
-
getCellStyle
SCellStyle getCellStyle(boolean local)
Get the cell style locally or look up from the parent- Parameters:
local
- true to get the local style only
-
-