CacheSupportInfo.java
853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
* 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;
}
}