Package org.openl.excel.parser.sax
Class SAXTableStyles
- java.lang.Object
-
- org.openl.excel.parser.sax.SAXTableStyles
-
- All Implemented Interfaces:
TableStyles
public class SAXTableStyles extends Object implements TableStyles
-
-
Constructor Summary
Constructors Constructor Description SAXTableStyles(IGridRegion region, int[][] cellIndexes, org.apache.poi.xssf.model.StylesTable stylesTable, org.apache.poi.xssf.model.CommentsTable sheetComments, Map<org.apache.poi.ss.util.CellAddress,String> formulas)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ICellCommentgetComment(int row, int column)ICellFontgetFont(int row, int column)StringgetFormula(int row, int column)IGridRegiongetRegion()ICellStylegetStyle(int row, int column)
-
-
-
Constructor Detail
-
SAXTableStyles
public SAXTableStyles(IGridRegion region, int[][] cellIndexes, org.apache.poi.xssf.model.StylesTable stylesTable, org.apache.poi.xssf.model.CommentsTable sheetComments, Map<org.apache.poi.ss.util.CellAddress,String> formulas)
-
-
Method Detail
-
getRegion
public IGridRegion getRegion()
- Specified by:
getRegionin interfaceTableStyles
-
getStyle
public ICellStyle getStyle(int row, int column)
- Specified by:
getStylein interfaceTableStyles
-
getFont
public ICellFont getFont(int row, int column)
- Specified by:
getFontin interfaceTableStyles
-
getComment
public ICellComment getComment(int row, int column)
- Specified by:
getCommentin interfaceTableStyles
-
getFormula
public String getFormula(int row, int column)
- Specified by:
getFormulain interfaceTableStyles
-
-