Examples of HgManifestCommand


Examples of org.tmatesoft.hg.core.HgManifestCommand

      return true;
    }
  }

  private void dumpCompleteManifestHigh() throws Exception {
    new HgManifestCommand(hgRepo).dirs(true).execute(new HgManifestHandler() {
     
      public void begin(Nodeid manifestRevision) {
        System.out.println(">> " + manifestRevision);
      }
      public void dir(Path p) {
View Full Code Here

Examples of org.tmatesoft.hg.core.HgManifestCommand

     
      public void end(Nodeid manifestRevision) {
      }
    };
    int rev = cmdLineOpts.getSingleInt(TIP, "-r", "--rev");
    new HgManifestCommand(hgRepo).dirs(false).changeset(rev).execute(h);
  }
View Full Code Here

Examples of org.tmatesoft.hg.core.HgManifestCommand

  private void testRevision(int rev) throws Exception {
    manifestParser.reset();
    eh.run("hg", "manifest", "--debug", "--rev", String.valueOf(rev == TIP ? -1 : rev));
    revisions.clear();
    new HgManifestCommand(repo).changeset(rev).execute(handler);
    report("manifest " + (rev == TIP ? "TIP:" : "--rev " + rev));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.