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

Packages that use CvsRevision
net.sf.statcvs.model   
net.sf.statcvs.output   
 

Uses of CvsRevision in net.sf.statcvs.model
 

Methods in net.sf.statcvs.model that return CvsRevision
 CvsRevision RevisionLimitIterator.next()
           
 CvsRevision RevisionIterator.next()
          Returns the next cvs revision or otherwise a NoSuchElementException is thrown.
 CvsRevision RevisionFilterIterator.next()
           
 CvsRevision ListRevisionIterator.next()
           
 CvsRevision FilesRevisionIterator.next()
           
 CvsRevision CvsRevision.getPreviousRevision()
          Returns the predecessor of this revision or null if it is the first revision.
 CvsRevision CvsFile.getLatestRevision()
          Gets the latest revision of this file.
 CvsRevision CvsFile.getInitialRevision()
          Gets the earliest revision of this file.
 CvsRevision CvsFile.getPreviousRevision(CvsRevision revision)
          Returns the revision which was replaced by the revision given as argument.
 

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
 CvsRevision CvsFile.getPreviousRevision(CvsRevision revision)
          Returns the revision which was replaced by the revision given as argument.
 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.addRevision(CvsRevision change)
          Adds a revision to the commit.
 void Author.addRevision(CvsRevision revision)
          adds a revision for this author
 

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

Uses of CvsRevision in net.sf.statcvs.output
 

Methods in net.sf.statcvs.output with parameters of type CvsRevision
 java.lang.String WebRepositoryIntegration.getFileViewUrl(CvsRevision revision)
          Returns a URL to a file in the web repository browser.
 java.lang.String WebRepositoryIntegration.getDiffUrl(CvsRevision oldRevision, CvsRevision newRevision)
          Returns a URL to a diff in the web repository browser.
 java.lang.String ViewCvsIntegration.getFileViewUrl(CvsRevision revision)
           
 java.lang.String ViewCvsIntegration.getDiffUrl(CvsRevision oldRevision, CvsRevision newRevision)
           
 void LOCSeriesBuilder.addRevision(CvsRevision revision)
          Adds a revision to the time series.
 java.lang.String CvswebIntegration.getFileViewUrl(CvsRevision revision)
           
 java.lang.String CvswebIntegration.getDiffUrl(CvsRevision oldRevision, CvsRevision newRevision)
           
 java.lang.String ChoraIntegration.getFileViewUrl(CvsRevision revision)
           
 java.lang.String ChoraIntegration.getDiffUrl(CvsRevision oldRevision, CvsRevision newRevision)