1 19 20 package jxl.write; 21 22 import jxl.CellFeatures; 23 24 27 public class WritableCellFeatures extends CellFeatures 28 { 29 32 public WritableCellFeatures() 33 { 34 super(); 35 } 36 37 42 public WritableCellFeatures(CellFeatures cf) 43 { 44 super(cf); 45 } 46 47 52 public void setComment(String s) 53 { 54 super.setComment(s); 55 } 56 57 65 public void setComment(String s, double width, double height) 66 { 67 super.setComment(s, width, height); 68 } 69 } 70 | Popular Tags |