first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View File

@@ -0,0 +1,85 @@
package jxl.write.biff;
import common.Assert;
import common.Logger;
import jxl.Cell;
import jxl.CellType;
import jxl.LabelCell;
import jxl.biff.FormattingRecords;
import jxl.biff.IntegerHelper;
import jxl.biff.Type;
import jxl.format.CellFormat;
public abstract class LabelRecord extends CellValue {
private static Logger logger = Logger.getLogger(LabelRecord.class);
private String contents;
private SharedStrings sharedStrings;
private int index;
protected LabelRecord(int c, int r, String cont) {
super(Type.LABELSST, c, r);
this.contents = cont;
if (this.contents == null)
this.contents = "";
}
protected LabelRecord(int c, int r, String cont, CellFormat st) {
super(Type.LABELSST, c, r, st);
this.contents = cont;
if (this.contents == null)
this.contents = "";
}
protected LabelRecord(int c, int r, LabelRecord lr) {
super(Type.LABELSST, c, r, lr);
this.contents = lr.contents;
}
protected LabelRecord(LabelCell lc) {
super(Type.LABELSST, (Cell)lc);
this.contents = lc.getString();
if (this.contents == null)
this.contents = "";
}
public CellType getType() {
return CellType.LABEL;
}
public byte[] getData() {
byte[] celldata = super.getData();
byte[] data = new byte[celldata.length + 4];
System.arraycopy(celldata, 0, data, 0, celldata.length);
IntegerHelper.getFourBytes(this.index, data, celldata.length);
return data;
}
public String getContents() {
return this.contents;
}
public String getString() {
return this.contents;
}
protected void setString(String s) {
if (s == null)
s = "";
this.contents = s;
if (!isReferenced())
return;
Assert.verify((this.sharedStrings != null));
this.index = this.sharedStrings.getIndex(this.contents);
this.contents = this.sharedStrings.get(this.index);
}
void setCellDetails(FormattingRecords fr, SharedStrings ss, WritableSheetImpl s) {
super.setCellDetails(fr, ss, s);
this.sharedStrings = ss;
this.index = this.sharedStrings.getIndex(this.contents);
this.contents = this.sharedStrings.get(this.index);
}
}