Package SevenZip.Archive.Common

Examples of SevenZip.Archive.Common.BindPair


        // RINOK(ReadNumber(numBindPairs));
        int numBindPairs = numOutStreams - 1;
        folder.BindPairs.clear();
        folder.BindPairs.ensureCapacity(numBindPairs);
        for (int i=0; i<numBindPairs; i++) {
            BindPair bindPair = new BindPair();
            bindPair.InIndex = this.inStream.ReadNum();
            bindPair.OutIndex = this.inStream.ReadNum();
            folder.BindPairs.add(bindPair);
        }
       
View Full Code Here


   
    public BindInfoEx toBindInfoEx() {
    BindInfoEx bindInfo = new BindInfoEx();
   
    for (int i = 0; i < this.BindPairs.size(); i++) {
      BindPair bindPair = new BindPair();
      bindPair.InIndex = ((BindPair)this.BindPairs.get(i)).InIndex;
      bindPair.OutIndex = ((BindPair)this.BindPairs.get(i)).OutIndex;
      bindInfo.BindPairs.add(bindPair);
    }
    int outStreamIndex = 0;
View Full Code Here

TOP

Related Classes of SevenZip.Archive.Common.BindPair

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.