Uses of Class
net.sf.statcvs.model.CvsRevision

Packages that use CvsRevision
net.sf.statcvs.model   
 

Uses of CvsRevision in net.sf.statcvs.model
 

Methods in net.sf.statcvs.model that return CvsRevision
 CvsRevision RevisionLimitIterator.next()
           
 CvsRevision RevisionFilterIterator.next()
           
 CvsRevision ListRevisionIterator.next()
           
 CvsRevision FilesRevisionIterator.next()
           
 CvsRevision RevisionIterator.next()
          Returns the next cvs revision or otherwise a NoSuchElementException is thrown.
 CvsRevision CvsFile.getLatestRevision()
          Gets the latest revision of this file.
 CvsRevision CvsFile.getInitialRevision()
          Gets the earliest revision of this file.
 

Methods in net.sf.statcvs.model with parameters of type CvsRevision
 boolean UserPredicate.meets(CvsRevision rev)
          Filters revisions that meet a given set of usernames
 boolean TimeSpanPredicate.meets(CvsRevision rev)
          Filters revisions that belong to a time span
 boolean RevisionPredicate.meets(CvsRevision rev)
          Returns TRUE if the Revsion satisfies the predicate, else FALSE
 boolean Commit.isSameCommit(CvsRevision change)
          Returns true if change is part of this commit, that is if they have the same author, the same message, and are within the same timeframe.
 void Commit.addChange(CvsRevision change)
          Adds a revision to the commit.
 

Constructors in net.sf.statcvs.model with parameters of type CvsRevision
Commit(CvsRevision change)
          Creates a new instance which consists of the given change.