package jxl; import java.util.regex.Pattern; import jxl.format.CellFormat; public interface Sheet { Cell getCell(int paramInt1, int paramInt2); Cell getCell(String paramString); int getRows(); int getColumns(); Cell[] getRow(int paramInt); Cell[] getColumn(int paramInt); String getName(); boolean isHidden(); boolean isProtected(); Cell findCell(String paramString); Cell findCell(String paramString, int paramInt1, int paramInt2, int paramInt3, int paramInt4, boolean paramBoolean); Cell findCell(Pattern paramPattern, int paramInt1, int paramInt2, int paramInt3, int paramInt4, boolean paramBoolean); LabelCell findLabelCell(String paramString); Hyperlink[] getHyperlinks(); Range[] getMergedCells(); SheetSettings getSettings(); CellFormat getColumnFormat(int paramInt); int getColumnWidth(int paramInt); CellView getColumnView(int paramInt); int getRowHeight(int paramInt); CellView getRowView(int paramInt); int getNumberOfImages(); Image getDrawing(int paramInt); int[] getRowPageBreaks(); int[] getColumnPageBreaks(); }