Package | Description |
---|---|
net.sf.statcvs.charts | |
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.pages | |
net.sf.statcvs.pages.xml | |
net.sf.statcvs.renderer | |
net.sf.statcvs.reports |
Constructor and Description |
---|
DirectoryPieChartMaker.CodeDistributionChartMaker(ReportConfig config,
Author author) |
Modifier and Type | Method and Description |
---|---|
Author |
Builder.getAuthor(String name)
returns the Author of the given name or creates it
if it does not yet exist.
|
Modifier and Type | Method and Description |
---|---|
Author |
Commit.getAuthor()
Returns the author of the commit.
|
Author |
Revision.getAuthor()
Returns the author of this revision.
|
Modifier and Type | Method and Description |
---|---|
Revision |
VersionedFile.addChangeRevision(String revisionNumber,
Author author,
Date date,
String comment,
int lines,
int linesDelta,
int replacedLines,
SortedSet symbolicNames)
Adds a change revision to the file.
|
Revision |
VersionedFile.addDeletionRevision(String revisionNumber,
Author author,
Date date,
String comment,
int lines,
SortedSet symbolicNames)
Adds a deletion revision to the file.
|
Revision |
VersionedFile.addInitialRevision(String revisionNumber,
Author author,
Date date,
String comment,
int lines,
SortedSet symbolicNames)
Adds an initial revision to the file.
|
boolean |
VersionedFile.hasAuthor(Author author)
Returns true, if
author worked on this file. |
Constructor and Description |
---|
Revision(VersionedFile file,
String revisionNumber,
int type,
Author author,
Date date,
String comment,
int lines,
int linesDelta,
int linesReplaced,
SortedSet symbolicNames)
Creates a new revision of a file with the
specified revision number.
|
Modifier and Type | Method and Description |
---|---|
boolean |
ReportConfig.isDeveloper(Author author) |
Modifier and Type | Method and Description |
---|---|
static String |
TwitterHelp.buildDeveloperLink(Author developer,
String loc,
Repository repository,
ReportConfig config) |
static String |
TwitterHelp.buildDeveloperOfMonthLink(Author developer,
int loc,
Repository repository,
String month_year,
ReportConfig config) |
static String |
HTML.getAuthorIdLink(Author author)
Returns HTML code for a link to an author Id page
|
static String |
HTML.getAuthorLink(Author author)
Returns HTML code for a link to an author page
|
static String |
DeveloperPageMaker.getURL(Author developer) |
Constructor and Description |
---|
DeveloperPageMaker(ReportConfig config,
Author developer) |
Modifier and Type | Method and Description |
---|---|
static String |
XML.getAuthorIdLink(Author author)
Returns HTML code for a link to an author Id page
|
static String |
XML.getAuthorLink(Author author)
Returns HTML code for a link to an author page
|
Modifier and Type | Method and Description |
---|---|
void |
TableCellRenderer.renderAuthorCell(Author author)
Render a cell containing an author
|
void |
HTMLTableCellRenderer.renderAuthorCell(Author author)
Render a cell containing an author to HTML
|
void |
XMLRenderer.renderAuthorCell(Author author)
Render a cell containing an author to XML
|
void |
TableCellRenderer.renderAuthorIdCell(Author author)
Render a cell containing an author Id
|
void |
HTMLTableCellRenderer.renderAuthorIdCell(Author author)
Render a cell containing an author Id to HTML
|
void |
XMLRenderer.renderAuthorIdCell(Author author) |
Constructor and Description |
---|
DirectoriesForAuthorTableReport(ReportConfig config,
Author author)
Creates a table report containing directories to which a specified
author has committed changes, and their respective number of changes
and LOC.
|