1 19 20 package jxl; 21 22 import jxl.format.CellFormat; 23 24 28 public interface Cell 29 { 30 35 public int getRow(); 36 37 42 public int getColumn(); 43 44 49 public CellType getType(); 50 51 57 public boolean isHidden(); 58 59 66 public String getContents(); 67 68 78 public CellFormat getCellFormat(); 79 80 86 public CellFeatures getCellFeatures(); 87 } 88 89 90 91 92 93 94 95 96 | Popular Tags |