1 19 20 package jxl.write; 21 22 import jxl.BooleanCell; 23 import jxl.format.CellFormat; 24 import jxl.write.biff.BooleanRecord; 25 26 30 public class Boolean extends BooleanRecord implements WritableCell, BooleanCell 31 { 32 40 public Boolean(int c, int r, boolean val) 41 { 42 super(c, r, val); 43 } 44 45 55 public Boolean(int c, int r, boolean val, CellFormat st) 56 { 57 super(c, r, val, st); 58 } 59 60 66 public Boolean(BooleanCell nc) 67 { 68 super(nc); 69 } 70 71 78 protected Boolean(int col, int row, Boolean b) 79 { 80 super(col, row, b); 81 } 82 87 public void setValue(boolean val) 88 { 89 super.setValue(val); 90 } 91 92 99 public WritableCell copyTo(int col, int row) 100 { 101 return new Boolean (col, row, this); 102 } 103 } 104 | Popular Tags |