1 19 20 package jxl.write; 21 22 import jxl.Cell; 23 import jxl.format.CellFormat; 24 25 28 public interface WritableCell extends Cell 29 { 30 35 public void setCellFormat(CellFormat cf); 36 37 46 public WritableCell copyTo(int col, int row); 47 48 53 public WritableCellFeatures getWritableCellFeatures(); 54 55 60 public void setCellFeatures(WritableCellFeatures cf); 61 } 62 63 | Popular Tags |