1 19 20 package jxl.write; 21 22 import jxl.write.biff.FormulaRecord; 23 import jxl.format.CellFormat; 24 25 28 public class Formula extends FormulaRecord implements WritableCell 29 { 30 37 public Formula(int c, int r, String form) 38 { 39 super(c, r, form); 40 } 41 42 50 public Formula(int c, int r, String form, CellFormat st) 51 { 52 super(c, r, form, st); 53 } 54 55 62 protected Formula(int c, int r, Formula f) 63 { 64 super(c, r, f); 65 } 66 73 public WritableCell copyTo(int col, int row) 74 { 75 return new Formula(col, row, this); 76 } 77 } 78 | Popular Tags |