CacheSupportInfo.java 853 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.fontengine.fontmanagement;

import java.io.Serializable;

public class CacheSupportInfo
implements Serializable {
    static final long serialVersionUID = 1;
    private final String mFontType;
    private final int mNumGlyphs;
    private final boolean mIsCFF;

    public CacheSupportInfo(String type, int numGlyphs, boolean cff) {
        this.mFontType = type;
        this.mNumGlyphs = numGlyphs;
        this.mIsCFF = cff;
    }

    public String getFontType() {
        return this.mFontType;
    }

    public int getNumGlyphs() {
        return this.mNumGlyphs;
    }

    public boolean isCFF() {
        return this.mIsCFF;
    }

    public String toString() {
        return "Font type = " + this.mFontType + ", Num glyphs = " + this.mNumGlyphs + ", isCFF = " + this.mIsCFF;
    }
}