Package nz.govt.natlib.adapter.pdf.dom

Examples of nz.govt.natlib.adapter.pdf.dom.StringNode


    int objId = obj.getId();
    int objVer = obj.getVersion();

    // take all the strings and decrypt them...
    if (value instanceof StringNode) {
      StringNode strNode = (StringNode) value;
      strNode.setValue(decryptString(strNode.getStringValue(), objId,
          objVer));
    }

    if (value instanceof ObjectNode) {
      ObjectNode o = (ObjectNode) value;
View Full Code Here

TOP

Related Classes of nz.govt.natlib.adapter.pdf.dom.StringNode

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.