Files
HRMS/hrmsEjb/jxl/Cell.java
2025-07-28 13:56:49 +05:30

20 lines
256 B
Java

package jxl;
import jxl.format.CellFormat;
public interface Cell {
int getRow();
int getColumn();
CellType getType();
boolean isHidden();
String getContents();
CellFormat getCellFormat();
CellFeatures getCellFeatures();
}