first commit
This commit is contained in:
31
hrmsEjb/jxl/write/Label.java
Normal file
31
hrmsEjb/jxl/write/Label.java
Normal file
@@ -0,0 +1,31 @@
|
||||
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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user