Package org.tmatesoft.hg.internal

Examples of org.tmatesoft.hg.internal.RevisionDescendants


    // array values represent bit mask, '1' for revision that shall re reported as descendant
    // least significant bit is revision 0, and so on, so that 1<<revision points to bit in the bitmask
    int[] descendantBitset = new int[] { 0x01FFFF, 0x0396, 0x0384, 0x01FC68, 0x010, 0x01FC60 };
    RevisionDescendants[] result = new RevisionDescendants[roots.length];
    for (int i = 0; i < roots.length; i++) {
      result[i] = new RevisionDescendants(hgRepo, roots[i]);
      result[i].build();
    }
    /*
    for (int i = 0; i < roots.length; i++) {
      System.out.printf("For root %d descendats are:", roots[i]);
View Full Code Here

TOP

Related Classes of org.tmatesoft.hg.internal.RevisionDescendants

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.