001/*
002 * ===========================================================================================
003 * = COPYRIGHT
004 *          PAX Computer Technology (Shenzhen) Co., Ltd. PROPRIETARY INFORMATION
005 *   This software is supplied under the terms of a license agreement or nondisclosure
006 *   agreement with PAX Computer Technology (Shenzhen) Co., Ltd. and may not be copied or
007 *   disclosed except in accordance with the terms in that agreement.
008 *     Copyright (C) 2017-2023 PAX Computer Technology (Shenzhen) Co., Ltd. All rights reserved.
009 * Description: // Detail description about the function of this module,
010 *             // interfaces with the other modules, and dependencies.
011 * Revision History:
012 * Date                         Author                        Action
013 * 2017/04/01                   PAX                     Create/Add/Modify/Delete
014 * ===========================================================================================
015 */
016package com.pax.dal.entity;
017
018public class FontInfo {
019    private int charSet;
020    private int width;
021    private int height;
022    private boolean bold = false;
023    private boolean italic = false;
024
025    public void setCharSet(int charSet){
026        this.charSet = charSet;
027    }
028    public int getCharSet() {
029        return charSet;
030    }
031
032    public void setWidth(int width){
033        this.width = width;
034    }
035
036    public int getWidth() {
037        return width;
038    }
039
040    public void setHeight(int height){
041        this.height = height;
042    }
043
044    public int getHeight() {
045        return height;
046    }
047
048    public void setbBold(boolean isBold){
049        this.bold = isBold;
050    }
051
052    public boolean isBold() {
053        return bold;
054    }
055
056    public void setItalic(boolean isItalic){
057        this.italic = isItalic;
058    }
059
060    public boolean isItalic() {
061        return italic;
062    }
063}