package jxl.write;

import jxl.LabelCell;
import jxl.format.CellFormat;
import jxl.write.biff.LabelRecord;

/* JADX INFO: loaded from: classes.dex */
public class Label extends LabelRecord implements WritableCell, LabelCell {
    public Label(int i2, int i3, String str) {
        super(i2, i3, str);
    }

    @Override // jxl.write.biff.CellValue, jxl.write.WritableCell
    public WritableCell copyTo(int i2, int i3) {
        return new Label(i2, i3, this);
    }

    @Override // jxl.write.biff.LabelRecord
    public void setString(String str) {
        super.setString(str);
    }

    public Label(int i2, int i3, String str, CellFormat cellFormat) {
        super(i2, i3, str, cellFormat);
    }

    public Label(int i2, int i3, Label label) {
        super(i2, i3, label);
    }

    public Label(LabelCell labelCell) {
        super(labelCell);
    }
}
