first commit
This commit is contained in:
49
hrmsEjb/jxl/Sheet.java
Normal file
49
hrmsEjb/jxl/Sheet.java
Normal file
@@ -0,0 +1,49 @@
|
||||
package jxl;
|
||||
|
||||
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);
|
||||
|
||||
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();
|
||||
}
|
Reference in New Issue
Block a user