first commit
This commit is contained in:
commit
4d332ef662
27586 changed files with 3281783 additions and 0 deletions
31
rus/WEB-INF/lib/jxl_src/jxl/write/Label.java
Normal file
31
rus/WEB-INF/lib/jxl_src/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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue