Java Doc for MetricsReport.java in  » UML » jrefactory » org » acm » seguin » metrics » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » UML » jrefactory » org.acm.seguin.metrics 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.acm.seguin.metrics.MetricsReport

All known Subclasses:   org.acm.seguin.metrics.CommaDelimitedReport,  org.acm.seguin.metrics.TextReport,
MetricsReport
abstract public class MetricsReport (Code)
Gathers metrics data
author:
   Chris Seguin




Method Summary
public  voidfinalReport(ProjectMetrics projectData)
    
public  voidmethodReport(MethodMetrics methodData)
     Method report shows all the metrics associated with a particular method.
abstract protected  voidreportAbstractClasses(ProjectMetrics projectData)
    
abstract protected  voidreportAverageClassMethods(ProjectMetrics projectData)
    
abstract protected  voidreportAverageClassVariables(ProjectMetrics projectData)
    
abstract protected  voidreportAverageInstanceVariables(ProjectMetrics projectData)
    
abstract protected  voidreportAverageOtherMethods(ProjectMetrics projectData)
    
abstract protected  voidreportAverageParameters(ProjectMetrics projectData)
    
abstract protected  voidreportAveragePublicMethods(ProjectMetrics projectData)
    
abstract protected  voidreportAverageStatements(ProjectMetrics projectData)
    
abstract protected  voidreportBlockDepth(String pack, String type, String name, int count)
    
abstract protected  voidreportClassMethods(String pack, String type, int count)
    
abstract protected  voidreportClassVariables(String pack, String type, int count)
    
abstract protected  voidreportClasses(ProjectMetrics projectData)
    
abstract protected  voidreportInstanceVariables(String pack, String type, int count)
    
abstract protected  voidreportInterfaces(ProjectMetrics projectData)
    
abstract protected  voidreportLinesOfCode(String pack, String type, String name, int count)
    
abstract protected  voidreportOtherMethods(String pack, String type, int count)
    
abstract protected  voidreportParameters(String pack, String type, String name, int count)
    
abstract protected  voidreportPublicMethods(String pack, String type, int count)
    
abstract protected  voidreportStatement(String pack, String type, String name, int count)
    
public  voidtypeReport(TypeMetrics typeData)
     Method report shows all the metrics associated with a particular type.



Method Detail
finalReport
public void finalReport(ProjectMetrics projectData)(Code)
Make a final report on totals
Parameters:
  projectData - Description of Parameter



methodReport
public void methodReport(MethodMetrics methodData)(Code)
Method report shows all the metrics associated with a particular method.
Parameters:
  methodData - the metrics associated with a particular method



reportAbstractClasses
abstract protected void reportAbstractClasses(ProjectMetrics projectData)(Code)
Reports on the number of abstract classes
Parameters:
  projectData - Description of Parameter



reportAverageClassMethods
abstract protected void reportAverageClassMethods(ProjectMetrics projectData)(Code)
Reports on the average number of class methods
Parameters:
  projectData - Description of Parameter



reportAverageClassVariables
abstract protected void reportAverageClassVariables(ProjectMetrics projectData)(Code)
Reports on the average number of class variables
Parameters:
  projectData - Description of Parameter



reportAverageInstanceVariables
abstract protected void reportAverageInstanceVariables(ProjectMetrics projectData)(Code)
Reports on the average number of instance variables
Parameters:
  projectData - Description of Parameter



reportAverageOtherMethods
abstract protected void reportAverageOtherMethods(ProjectMetrics projectData)(Code)
Reports on the average number of other methods
Parameters:
  projectData - Description of Parameter



reportAverageParameters
abstract protected void reportAverageParameters(ProjectMetrics projectData)(Code)
Reports on the average number of parameters
Parameters:
  projectData - Description of Parameter



reportAveragePublicMethods
abstract protected void reportAveragePublicMethods(ProjectMetrics projectData)(Code)
Reports on the average number of public methods
Parameters:
  projectData - Description of Parameter



reportAverageStatements
abstract protected void reportAverageStatements(ProjectMetrics projectData)(Code)
Reports on the average number of statements
Parameters:
  projectData - Description of Parameter



reportBlockDepth
abstract protected void reportBlockDepth(String pack, String type, String name, int count)(Code)
Reports on the block depth of code
Parameters:
  pack - the name of the package
Parameters:
  type - the name of the class or interface
Parameters:
  name - the name of the method
Parameters:
  count - the number of parameters



reportClassMethods
abstract protected void reportClassMethods(String pack, String type, int count)(Code)
Reports on the number of class methods
Parameters:
  pack - the name of the package
Parameters:
  type - the name of the class or interface
Parameters:
  count - the number of class methods



reportClassVariables
abstract protected void reportClassVariables(String pack, String type, int count)(Code)
Reports on the number of class variables
Parameters:
  pack - the name of the package
Parameters:
  type - the name of the class or interface
Parameters:
  count - the number of class variables



reportClasses
abstract protected void reportClasses(ProjectMetrics projectData)(Code)
Reports on the number of classes
Parameters:
  projectData - Description of Parameter



reportInstanceVariables
abstract protected void reportInstanceVariables(String pack, String type, int count)(Code)
Reports on the number of instance variables
Parameters:
  pack - the name of the package
Parameters:
  type - the name of the class or interface
Parameters:
  count - the number of instance variables



reportInterfaces
abstract protected void reportInterfaces(ProjectMetrics projectData)(Code)
Reports on the number of interfaces
Parameters:
  projectData - Description of Parameter



reportLinesOfCode
abstract protected void reportLinesOfCode(String pack, String type, String name, int count)(Code)
Reports on the number of lines of code
Parameters:
  pack - the name of the package
Parameters:
  type - the name of the class or interface
Parameters:
  name - the name of the method
Parameters:
  count - the number of parameters



reportOtherMethods
abstract protected void reportOtherMethods(String pack, String type, int count)(Code)
Reports on the number of other methods
Parameters:
  pack - the name of the package
Parameters:
  type - the name of the class or interface
Parameters:
  count - the number of other methods



reportParameters
abstract protected void reportParameters(String pack, String type, String name, int count)(Code)
Reports on the number of parameters
Parameters:
  pack - the name of the package
Parameters:
  type - the name of the class or interface
Parameters:
  name - the name of the method
Parameters:
  count - the number of parameters



reportPublicMethods
abstract protected void reportPublicMethods(String pack, String type, int count)(Code)
Reports on the number of public methods
Parameters:
  pack - the name of the package
Parameters:
  type - the name of the class or interface
Parameters:
  count - the number of public methods



reportStatement
abstract protected void reportStatement(String pack, String type, String name, int count)(Code)
Reports on the number of statements
Parameters:
  pack - the name of the package
Parameters:
  type - the name of the class or interface
Parameters:
  name - the name of the method
Parameters:
  count - the number of statements



typeReport
public void typeReport(TypeMetrics typeData)(Code)
Method report shows all the metrics associated with a particular type.
Parameters:
  typeData - the metrics for a particular type



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.