first commit
This commit is contained in:
commit
4d332ef662
27586 changed files with 3281783 additions and 0 deletions
56
rus/WEB-INF/lib/jxl_src/jxl/Sheet.java
Normal file
56
rus/WEB-INF/lib/jxl_src/jxl/Sheet.java
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
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();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue