Regalamiunsorriso/rus/WEB-INF/lib/jxl_src/jxl/Cell.java
2026-03-14 20:04:39 +01:00

19 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();
}