1 19 20 package jxl.write; 21 22 import jxl.LabelCell; 23 import jxl.format.CellFormat; 24 import jxl.write.biff.LabelRecord; 25 26 29 public class Label extends LabelRecord implements WritableCell, LabelCell 30 { 31 39 public Label(int c, int r, String cont) 40 { 41 super(c, r, cont); 42 } 43 44 54 public Label(int c, int r, String cont, CellFormat st) 55 { 56 super(c, r, cont, st); 57 } 58 59 66 protected Label(int col, int row, Label l) 67 { 68 super(col, row, l); 69 } 70 71 77 public Label(LabelCell lc) 78 { 79 super(lc); 80 } 81 82 87 public void setString(String s) 88 { 89 super.setString(s); 90 } 91 92 99 public WritableCell copyTo(int col, int row) 100 { 101 return new Label(col, row, this); 102 } 103 } 104 105 | Popular Tags |