1 19 20 package jxl.write; 21 22 import jxl.NumberCell; 23 import jxl.write.biff.NumberRecord; 24 import jxl.format.CellFormat; 25 26 29 public class Number extends NumberRecord implements WritableCell, NumberCell 30 { 31 40 public Number(int c, int r, double val) 41 { 42 super(c, r, val); 43 } 44 45 56 public Number(int c, int r, double val, CellFormat st) 57 { 58 super(c, r, val, st); 59 } 60 61 67 public Number(NumberCell nc) 68 { 69 super(nc); 70 } 71 72 77 public void setValue(double val) 78 { 79 super.setValue(val); 80 } 81 82 89 protected Number(int col, int row, Number n) 90 { 91 super(col, row, n); 92 } 93 94 101 public WritableCell copyTo(int col, int row) 102 { 103 return new Number (col, row, this); 104 } 105 106 } 107 | Popular Tags |