Package org.odftoolkit.odfdom.pkg.rdfa

Examples of org.odftoolkit.odfdom.pkg.rdfa.DOMRDFaParser


  * the xhtml:xxx attrbutes values of the node are changed.
  * @param the node, whose in content metadata will be updated
  */
  public void updateInContentMetadataCache(Node node) {
    this.getInContentMetadataCache().remove(node);
    DOMRDFaParser parser = DOMRDFaParser.createInstance(this.sink);
    String baseUri = Util.getRDFBaseUri(mPackage.getBaseURI(), mPackagePath);
    parser.setBase(baseUri);
    parser.parse(node);
  }
View Full Code Here

TOP

Related Classes of org.odftoolkit.odfdom.pkg.rdfa.DOMRDFaParser

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.