Uses of Class
org.gitective.core.CommitFinder

Packages that use CommitFinder
org.gitective.core   
 

Uses of CommitFinder in org.gitective.core
 

Methods in org.gitective.core that return CommitFinder
 CommitFinder CommitFinder.find()
          Search the commits starting at the commit that HEAD current references.
 CommitFinder CommitFinder.findBetween(org.eclipse.jgit.lib.ObjectId start, org.eclipse.jgit.lib.ObjectId end)
          Search the commits between the given start and end commits.
 CommitFinder CommitFinder.findBetween(org.eclipse.jgit.lib.ObjectId start, String end)
          Search the commits between the given start commit id and the given end revision.
 CommitFinder CommitFinder.findBetween(String start, org.eclipse.jgit.lib.ObjectId end)
          Search the commits between the given start revision and the given end commit id.
 CommitFinder CommitFinder.findBetween(String start, String end)
          Search the commits between the given start revision and the given end revision.
 CommitFinder CommitFinder.findFrom(org.eclipse.jgit.lib.ObjectId start)
          Search the commits starting from the given commit id.
 CommitFinder CommitFinder.findFrom(String start)
          Search the commits starting from the given revision.
 CommitFinder CommitFinder.findInBranches()
          Search the commits starting at the commit that each branch is referencing.
 CommitFinder CommitFinder.findInTags()
          Search the commits starting at the commit that each tag is referencing.
 CommitFinder CommitFinder.findUntil(org.eclipse.jgit.lib.ObjectId end)
          Search the commits starting at HEAD and ending with the given commit id
 CommitFinder CommitFinder.findUntil(String end)
          Search the commits starting at HEAD and ending with the given revision
 CommitFinder CommitFinder.setFilter(org.eclipse.jgit.revwalk.filter.RevFilter filter)
          Set the RevFilter to use to filter commits during searches.
 CommitFinder CommitFinder.setFilter(org.eclipse.jgit.treewalk.filter.TreeFilter filter)
          Set the TreeFilter to use to limit commits visited.
 CommitFinder CommitFinder.setMatcher(org.eclipse.jgit.revwalk.filter.RevFilter filter)
          Set the RevFilter to use to match filtered commits.
 CommitFinder CommitFinder.setReverseOrder(boolean reverse)
          Set whether to use RevSort.REVERSE to sort commits
protected  CommitFinder CommitFinder.walk(org.eclipse.jgit.lib.Repository repository, org.eclipse.jgit.lib.ObjectId start, org.eclipse.jgit.lib.ObjectId end)
          Walk the commits between the start commit id and end commit id.
protected  CommitFinder CommitFinder.walk(org.eclipse.jgit.revwalk.RevWalk walk)
          Traverse the commits in the given RevWalk
 



Copyright © 2011-2012. All Rights Reserved.