jdepend.framework

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 » Development » jdepend 2.9 » jdepend.framework 
jdepend.framework
Java Source File NameTypeComment
AbstractParser.javaClass The AbstractParser class is the base class for classes capable of parsing files to create a JavaClass instance.
AllTests.javaClass
ClassFileParser.javaClass The ClassFileParser class is responsible for parsing a Java class file to create a JavaClass instance.
ClassFileParserTest.javaClass
CollectAllCyclesTest.javaClass
ComponentTest.javaClass
ConstraintTest.javaClass
CycleTest.javaClass
DependencyConstraint.javaClass The DependencyConstraint class is a constraint that tests whether two package-dependency graphs are equivalent.

This class is useful for writing package dependency assertions (e.g.

ExampleAbstractClass.javaClass
ExampleConcreteClass.javaClass
ExampleInterface.javaInterface
ExampleTest.javaClass The ExampleTest is an example TestCase that demonstrates tests for measuring the distance from the main sequence (D), package dependency constraints, and the existence of cyclic package dependencies.
FileManager.javaClass The FileManager class is responsible for extracting Java class files (.class files) from a collection of registered directories.
FileManagerTest.javaClass
FilterTest.javaClass
JarFileParserTest.javaClass
JavaClass.javaClass The JavaClass class represents a Java class or interface.
JavaClassBuilder.javaClass The JavaClassBuilder builds JavaClass instances from .class, .jar, .war, or .zip files.
JavaPackage.javaClass The JavaPackage class represents a Java package.
JDepend.javaClass The JDepend class analyzes directories of Java class files and generates the following metrics for each Java package.

  • Afferent Coupling (Ca)

    The number of packages that depend upon the classes within the analyzed package.

  • Efferent Coupling (Ce)

    The number of packages that the classes in the analyzed package depend upon.

  • Abstractness (A)

    The ratio of the number of abstract classes (and interfaces) in the analyzed package to the total number of classes in the analyzed package.

    The range for this metric is 0 to 1, with A=0 indicating a completely concrete package and A=1 indicating a completely abstract package.

  • Instability (I)

    The ratio of efferent coupling (Ce) to total coupling (Ce + Ca) such that I = Ce / (Ce + Ca).

    The range for this metric is 0 to 1, with I=0 indicating a completely stable package and I=1 indicating a completely instable package.

  • Distance from the Main Sequence (D)

    The perpendicular distance of a package from the idealized line A + I = 1.

JDependTestCase.javaClass
MetricTest.javaClass
PackageComparator.javaClass The PackageComparator class is a Comparator used to compare two JavaPackage instances for order using a sorting strategy.
PackageFilter.javaClass The PackageFilter class is used to filter imported package names.
ParserListener.javaInterface The ParserListener interface defines a listener notified upon the completion of parsing events.
PropertyConfigurator.javaClass The PropertyConfigurator class contains configuration information contained in the jdepend.properties file, if such a file exists either in the user's home directory or somewhere in the classpath.
PropertyConfiguratorTest.javaClass
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.