Package org.apache.padaf.xmpbox.parser

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


    if (classSchem.isAnnotationPresent(SchemaExtensionDefinition.class)) {
      schemDefAnnot = classSchem
          .getAnnotation(SchemaExtensionDefinition.class);
      // Try to find and load XML Properties Descriptions file path
      if (!schemDefAnnot.property_descriptions().equals("")) {
        XMLPropertiesDescriptionManager propManag = new XMLPropertiesDescriptionManager();
        propManag.loadListFromXML(classSchem, schemDefAnnot
            .property_descriptions());
        xmlPropDesc = propManag.getPropertiesDescriptionList();
      }
      SchemaDescription desc = ext.createSchemaDescription();
      desc.setSchemaValue(schemDefAnnot.schema());
      desc.setNameSpaceURIValue(schema.getNamespaceValue());
      desc.setPrefixValue(schema.getPrefix());
View Full Code Here

TOP

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

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.