Package org.apache.pdfbox.pdmodel.documentinterchange.logicalstructure

Examples of org.apache.pdfbox.pdmodel.documentinterchange.logicalstructure.PDStructureTreeRoot


     *
     * @return The document's structure tree root or null if none exists.
     */
    public PDStructureTreeRoot getStructureTreeRoot()
    {
        PDStructureTreeRoot treeRoot = null;
        COSDictionary dic = (COSDictionary)root.getDictionaryObject( COSName.STRUCT_TREE_ROOT );
        if( dic != null )
        {
            treeRoot = new PDStructureTreeRoot( dic );
        }
        return treeRoot;
    }
View Full Code Here

TOP

Related Classes of org.apache.pdfbox.pdmodel.documentinterchange.logicalstructure.PDStructureTreeRoot

Copyright © 2018 www.massapicom. 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.