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

Packages that use Author
net.sf.statcvs.input This package is responsible for parsing CVS logs and working copy and creating a StatCVS model from them. 
net.sf.statcvs.model Classes providing a representation of all log data in a repository. 
net.sf.statcvs.output   
net.sf.statcvs.renderer   
net.sf.statcvs.reports   
 

Uses of Author in net.sf.statcvs.input
 

Methods in net.sf.statcvs.input that return Author
 Author Builder.getAuthor(String name)
          returns the Author of the given name or creates it if it does not yet exist.
 

Uses of Author in net.sf.statcvs.model
 

Methods in net.sf.statcvs.model that return Author
 Author CvsRevision.getAuthor()
          Returns the author of this revision.
 Author Commit.getAuthor()
          Returns the author of the commit.
 

Methods in net.sf.statcvs.model with parameters of type Author
 boolean CvsFile.hasAuthor(Author author)
          Returns true, if author worked on this file.
 CvsRevision CvsFile.addInitialRevision(String revisionNumber, Author author, Date date, String comment, int lines)
          Adds an initial revision to the file.
 CvsRevision CvsFile.addChangeRevision(String revisionNumber, Author author, Date date, String comment, int lines, int linesDelta, int replacedLines)
          Adds a change revision to the file.
 CvsRevision CvsFile.addDeletionRevision(String revisionNumber, Author author, Date date, String comment, int lines)
          Adds a deletion revision to the file.
 

Uses of Author in net.sf.statcvs.output
 

Methods in net.sf.statcvs.output with parameters of type Author
static String HTMLOutput.getAuthorPageFilename(Author author)
           
static String HTMLOutput.getActivityTimeChartFilename(Author author)
           
static String HTMLOutput.getActivityDayChartFilename(Author author)
           
static String HTMLOutput.getCodeDistributionChartFilename(Author author)
           
static String HTMLTagger.getAuthorLink(Author author)
          Returns HTML code for a link to an author page
 

Constructors in net.sf.statcvs.output with parameters of type Author
AuthorPage(CvsContent content, Author author, boolean codeDistributionChartCreated)
          Method UserPage.
 

Uses of Author in net.sf.statcvs.renderer
 

Methods in net.sf.statcvs.renderer with parameters of type Author
 void TableCellRenderer.renderAuthorCell(Author author)
          Render a cell containing an author
 void HTMLTableCellRenderer.renderAuthorCell(Author author)
          Render a cell containing an author to HTML
 

Constructors in net.sf.statcvs.renderer with parameters of type Author
PieChart(CvsContent content, String title, String fileName, Author author, int filter)
          creates an 3D Pie Chart
 

Uses of Author in net.sf.statcvs.reports
 

Constructors in net.sf.statcvs.reports with parameters of type Author
DirectoriesForAuthorTableReport(CvsContent content, Author author)
          Creates a table report containing directories to which a specified author has committed changes, and their respective number of changes and LOC.