Files
HRMS/hrmsEjb/jxl/write/Label.java
2025-07-28 13:56:49 +05:30

32 lines
642 B
Java

package jxl.write;
import jxl.LabelCell;
import jxl.format.CellFormat;
import jxl.write.biff.LabelRecord;
public class Label extends LabelRecord implements WritableCell, LabelCell {
public Label(int c, int r, String cont) {
super(c, r, cont);
}
public Label(int c, int r, String cont, CellFormat st) {
super(c, r, cont, st);
}
protected Label(int col, int row, Label l) {
super(col, row, l);
}
public Label(LabelCell lc) {
super(lc);
}
public void setString(String s) {
super.setString(s);
}
public WritableCell copyTo(int col, int row) {
return new Label(col, row, this);
}
}