14 lines
349 B
Java
14 lines
349 B
Java
|
|
package jxl.write;
|
||
|
|
|
||
|
|
import jxl.Cell;
|
||
|
|
import jxl.format.CellFormat;
|
||
|
|
|
||
|
|
public interface WritableCell extends Cell {
|
||
|
|
void setCellFormat(CellFormat paramCellFormat);
|
||
|
|
|
||
|
|
WritableCell copyTo(int paramInt1, int paramInt2);
|
||
|
|
|
||
|
|
WritableCellFeatures getWritableCellFeatures();
|
||
|
|
|
||
|
|
void setCellFeatures(WritableCellFeatures paramWritableCellFeatures);
|
||
|
|
}
|