All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.excel.metadata.Font Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
package com.alibaba.excel.metadata;

/**
 *
 * @author jipengfei
 * @deprecated please use {@link com.alibaba.excel.write.metadata.style.WriteFont}
 */
@Deprecated
public class Font {

    /**
     */
    private String fontName;

    /**
     */
    private short fontHeightInPoints;

    /**
     */
    private boolean bold;

    public String getFontName() {
        return fontName;
    }

    public void setFontName(String fontName) {
        this.fontName = fontName;
    }

    public short getFontHeightInPoints() {
        return fontHeightInPoints;
    }

    public void setFontHeightInPoints(short fontHeightInPoints) {
        this.fontHeightInPoints = fontHeightInPoints;
    }

    public boolean isBold() {
        return bold;
    }

    public void setBold(boolean bold) {
        this.bold = bold;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy