Package com.itextpdf.xmp.options

Examples of com.itextpdf.xmp.options.IteratorOptions


   */
  public XMPIteratorImpl(XMPMetaImpl xmp, String schemaNS, String propPath,
      IteratorOptions options) throws XMPException
  {
    // make sure that options is defined at least with defaults
    this.options = options != null ? options : new IteratorOptions();
   
    // the start node of the iteration depending on the schema and property filter
    XMPNode startNode = null;
    String initialPath = null;
    boolean baseSchema = schemaNS != null  &&  schemaNS.length() > 0;
View Full Code Here

TOP

Related Classes of com.itextpdf.xmp.options.IteratorOptions

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.