package jxl.write;

import jxl.Cell;
import jxl.format.CellFormat;

/* JADX INFO: loaded from: classes.dex */
public interface WritableCell extends Cell {
    WritableCell copyTo(int i2, int i3);

    WritableCellFeatures getWritableCellFeatures();

    void setCellFeatures(WritableCellFeatures writableCellFeatures);

    void setCellFormat(CellFormat cellFormat);
}
