PDFFontSetManager.java 1.03 KB
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  com.adobe.fontengine.fontmanagement.FontResolutionPriority
 */
package com.adobe.internal.pdftoolkit.core.fontset;

import com.adobe.fontengine.fontmanagement.FontResolutionPriority;
import com.adobe.internal.pdftoolkit.core.exceptions.PDFFontException;
import com.adobe.internal.pdftoolkit.core.fontset.PDFFontSet;
import com.adobe.internal.pdftoolkit.core.fontset.impl.PDFFontSetImpl;

public class PDFFontSetManager {
    public static final PDFFontSet getPDFFontSetInstance() throws PDFFontException {
        return new PDFFontSetImpl();
    }

    public static final PDFFontSet getPDFFontSetInstance(FontResolutionPriority priority) throws PDFFontException {
        return new PDFFontSetImpl(priority);
    }

    public static final PDFFontSet getPDFFontSetInstance(PDFFontSet original) throws PDFFontException {
        if (original instanceof PDFFontSetImpl) {
            return new PDFFontSetImpl((PDFFontSetImpl)original);
        }
        return null;
    }
}