Regalamiunsorriso/rus/WEB-INF/lib/jxl_src/jxl/Cell.java

19 lines
256 B
Java
Raw Normal View History

2026-03-14 20:04:39 +01:00
package jxl;
import jxl.format.CellFormat;
public interface Cell {
int getRow();
int getColumn();
CellType getType();
boolean isHidden();
String getContents();
CellFormat getCellFormat();
CellFeatures getCellFeatures();
}