Package jdiff
Class HTMLStatistics
- java.lang.Object
-
- jdiff.HTMLStatistics
-
public class HTMLStatistics extends java.lang.ObjectEmit an HTML file containing statistics about the differences. Statistical information only appears if the -stats argument is used. See the file LICENSE.txt for copyright details.
-
-
Constructor Summary
Constructors Constructor Description HTMLStatistics(HTMLReportGenerator h)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidemitClassesByDiff(APIDiff apiDiff)Emit all classes sorted by percentage difference, and a histogram of the values..voidemitNumbersByElement(APIDiff apiDiff)Emit a table of numbers of removals, additions and changes by package, class, constructor, method and field.voidemitPackagesByDiff(APIDiff apiDiff)Emit all packages sorted by percentage difference, and a histogram of the values.voidemitStatistics(java.lang.String filename, APIDiff apiDiff)Emit the statistics HTML file.
-
-
-
Constructor Detail
-
HTMLStatistics
public HTMLStatistics(HTMLReportGenerator h)
Constructor.
-
-
Method Detail
-
emitStatistics
public void emitStatistics(java.lang.String filename, APIDiff apiDiff)Emit the statistics HTML file.
-
emitPackagesByDiff
public void emitPackagesByDiff(APIDiff apiDiff)
Emit all packages sorted by percentage difference, and a histogram of the values.
-
emitClassesByDiff
public void emitClassesByDiff(APIDiff apiDiff)
Emit all classes sorted by percentage difference, and a histogram of the values..
-
emitNumbersByElement
public void emitNumbersByElement(APIDiff apiDiff)
Emit a table of numbers of removals, additions and changes by package, class, constructor, method and field.
-
-