Package org.apache.padaf.xmpbox.parser

Examples of org.apache.padaf.xmpbox.parser.XmpSchemaException


     */
    public PDFAExtensionSchema(XMPMetadata metadata,
            Map<String, String> namespaces) throws XmpSchemaException {
        super(metadata, PDFAEXTENSION, PDFAEXTENSIONURI);
        if (!namespaces.containsKey(PDFAEXTENSION)) {
            throw new XmpSchemaException(
            "Extension schema is declared without the pdfaSchema namespace specification");
        }
        namespaces.remove(PDFAEXTENSION);

        for (Entry<String, String> entry : namespaces.entrySet()) {
View Full Code Here

TOP

Related Classes of org.apache.padaf.xmpbox.parser.XmpSchemaException

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.