Examples of GlyphDetail


Examples of org.apache.pdfbox.preflight.font.util.GlyphDetail

     * @throws GlyphException if the code has previously been marked as invalid // TODO useful ??
     */
    private boolean isAlreadyProcessed(int code) throws GlyphException
    {
        boolean already = false;
        GlyphDetail detail = codeToDetail.get(code);
        if (detail != null)
        {
            detail.throwExceptionIfNotValid();
            already = true;
        }
        return already;
    }
View Full Code Here

Examples of org.apache.pdfbox.preflight.font.util.GlyphDetail

        markAsValid(code);
    }

    public final void markAsValid(int code)
    {
        this.codeToDetail.put(code, new GlyphDetail(code));
    }
View Full Code Here

Examples of org.apache.pdfbox.preflight.font.util.GlyphDetail

        this.codeToDetail.put(code, new GlyphDetail(code));
    }

    public final void markAsInvalid(int code, GlyphException e)
    {
        this.codeToDetail.put(code, new GlyphDetail(code, e));
    }
View Full Code Here

Examples of org.apache.pdfbox.preflight.font.util.GlyphDetail

     *             if the CID has previously been marked as invalid // TODO useful ??
     */
    protected boolean isAlreadyComputedCid(int cid) throws GlyphException
    {
        boolean already = false;
        GlyphDetail gdetail = this.computedCid.get(cid);
        if (gdetail != null)
        {
            gdetail.throwExceptionIfNotValid();
            already = true;
        }
        return already;
    }
View Full Code Here

Examples of org.apache.pdfbox.preflight.font.util.GlyphDetail

        markCIDAsValid(cid);
    }

    public final void markCIDAsValid(int cid)
    {
        this.computedCid.put(cid, new GlyphDetail(cid));
    }
View Full Code Here

Examples of org.apache.pdfbox.preflight.font.util.GlyphDetail

        this.computedCid.put(cid, new GlyphDetail(cid));
    }

    public final void markCIDAsInvalid(int cid, GlyphException gex)
    {
        this.computedCid.put(cid, new GlyphDetail(cid, gex));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.