Uses of Class
org.eclipse.jgit.revwalk.RevWalk

Packages that use RevWalk
org.eclipse.jgit.lib   
org.eclipse.jgit.merge   
org.eclipse.jgit.revplot   
org.eclipse.jgit.revwalk   
org.eclipse.jgit.revwalk.filter   
org.eclipse.jgit.transport   
 

Uses of RevWalk in org.eclipse.jgit.lib
 

Methods in org.eclipse.jgit.lib with parameters of type RevWalk
 RefUpdate.Result RefUpdate.delete(RevWalk walk)
          Delete the ref.
 RefUpdate.Result RefUpdate.update(RevWalk walk)
          Gracefully update the ref to the new value.
 void ObjectReader.walkAdviceBeginCommits(RevWalk walk, Collection<RevCommit> roots)
          Advice from a RevWalk that a walk is starting from these roots.
 

Uses of RevWalk in org.eclipse.jgit.merge
 

Fields in org.eclipse.jgit.merge declared as RevWalk
protected  RevWalk Merger.walk
          A RevWalk for computing merge bases, or listing incoming commits.
 

Uses of RevWalk in org.eclipse.jgit.revplot
 

Subclasses of RevWalk in org.eclipse.jgit.revplot
 class PlotWalk
          Specialized RevWalk for visualization of a commit graph.
 

Methods in org.eclipse.jgit.revplot with parameters of type RevWalk
 void PlotCommitList.source(RevWalk w)
           
 

Uses of RevWalk in org.eclipse.jgit.revwalk
 

Subclasses of RevWalk in org.eclipse.jgit.revwalk
static class DepthWalk.ObjectWalk
          Subclass of ObjectWalk that performs depth filtering.
static class DepthWalk.RevWalk
          Subclass of RevWalk that performs depth filtering.
 class ObjectWalk
          Specialized subclass of RevWalk to include trees, blobs and tags.
 

Methods in org.eclipse.jgit.revwalk that return RevWalk
 RevWalk RevFlag.getRevWalk()
          Get the revision walk instance this flag was created from.
 

Methods in org.eclipse.jgit.revwalk with parameters of type RevWalk
static int RevWalkUtils.count(RevWalk walk, RevCommit start, RevCommit end)
          Count the number of commits that are reachable from start until a commit that is reachable from end is encountered.
static RevTag RevTag.parse(RevWalk rw, byte[] raw)
          Parse an annotated tag from its canonical format.
static RevCommit RevCommit.parse(RevWalk rw, byte[] raw)
          Parse a commit from its canonical format.
 void RevCommitList.source(RevWalk w)
          Set the revision walker this list populates itself from.
 

Uses of RevWalk in org.eclipse.jgit.revwalk.filter
 

Methods in org.eclipse.jgit.revwalk.filter with parameters of type RevWalk
abstract  boolean RevFilter.include(RevWalk walker, RevCommit cmit)
          Determine if the supplied commit should be included in results.
 boolean SkipRevFilter.include(RevWalk walker, RevCommit cmit)
           
 boolean NotRevFilter.include(RevWalk walker, RevCommit c)
           
 boolean PatternMatchRevFilter.include(RevWalk walker, RevCommit cmit)
           
 boolean MaxCountRevFilter.include(RevWalk walker, RevCommit cmit)
           
 boolean SubStringRevFilter.include(RevWalk walker, RevCommit cmit)
           
 

Uses of RevWalk in org.eclipse.jgit.transport
 

Fields in org.eclipse.jgit.transport declared as RevWalk
protected  RevWalk BaseReceivePack.walk
          Revision traversal support over BaseReceivePack.db.
 

Methods in org.eclipse.jgit.transport that return RevWalk
 RevWalk UploadPack.getRevWalk()
           
 RevWalk BaseReceivePack.getRevWalk()
           
 

Methods in org.eclipse.jgit.transport with parameters of type RevWalk
protected  Set<ObjectId> AbstractAdvertiseRefsHook.getAdvertisedHaves(Repository repository, RevWalk revWalk)
          Get the additional haves to advertise.
protected abstract  Map<String,Ref> AbstractAdvertiseRefsHook.getAdvertisedRefs(Repository repository, RevWalk revWalk)
          Get the refs to advertise.
protected  void RemoteRefUpdate.updateTrackingRef(RevWalk walk)
          Update locally stored tracking branch with the new object.
 



Copyright © 2012. All Rights Reserved.