Package org.openntf.domino.nsfdata.structs.cd

Examples of org.openntf.domino.nsfdata.structs.cd.CDFILEHEADER


            System.out.println("we went too deep!");
            break;
          }

          if (record instanceof CDFILEHEADER) {
            CDFILEHEADER header = (CDFILEHEADER) record;
            totalSegments = header.getSegCount();
            segmentCount = 0;
          }
          if (record instanceof CDFILESEGMENT) {
            CDFILESEGMENT seg = (CDFILESEGMENT) record;
            ByteBuffer data = ByteBuffer.wrap(seg.getFileData());
View Full Code Here

TOP

Related Classes of org.openntf.domino.nsfdata.structs.cd.CDFILEHEADER

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.