Metric Results

[ summary ] [ packages ] [ cycles ] [ explanations ]

The following document contains the results of a JDepend metric analysis. The various metrics are defined at the bottom of this document.

Summary

[ summary ] [ packages ] [ cycles ] [ explanations ]

Package Total

Classes
Abstract

Classes
Concrete

Classes
Afferent

Couplings
Efferent

Couplings
Abstractness Instability Distance
com.lonniepryor.blues 5 1 4 1 6 0.2 86% 6%
com.lonniepryor.blues.aop 17 10 7 2 3 0.59 60% 19%
com.lonniepryor.blues.cfg 26 12 14 3 4 0.46 57% 3%
com.lonniepryor.blues.sys 27 4 23 1 8 0.15 89% 4%
com.lonniepryor.blues.util 157 14 143 5 5 0.09 50% 41%
com.lonniepryor.blues.xml 9 1 8 1 11 0.11 92% 3%

Packages

[ summary ] [ packages ] [ cycles ] [ explanations ]

com.lonniepryor.blues

Afferent Couplings Efferent Couplings Abstractness Instability Distance
1 6 20% 86% 6%
Abstract Classes Concrete Classes Used by Packages Uses Packages
Lifecycle

Blues

Engine

Local

Session

com.lonniepryor.blues.sys

com.lonniepryor.blues.cfg

com.lonniepryor.blues.sys

com.lonniepryor.blues.util

com.lonniepryor.blues.xml

java.lang

java.util

com.lonniepryor.blues.util

Afferent Couplings Efferent Couplings Abstractness Instability Distance
5 5 9% 50% 41%
Abstract Classes Concrete Classes Used by Packages Uses Packages
BeanHelper$ValueBuilder

Characters

Constructors

Expression$Builder

Fields

Methods

Parameters

Parameters$Builder

Strings

Strings$Builder

Throwables

TokenizedStrings

TokenizedStrings$Builder

Types

BeanHelper

BeanHelper$1

BeanHelper$10

BeanHelper$11

BeanHelper$2

BeanHelper$3

BeanHelper$4

BeanHelper$5

BeanHelper$6

BeanHelper$7

BeanHelper$8

BeanHelper$9

BluesException

Characters$1

Characters$2

Characters$3

Characters$4

Characters$5

Characters$6

Characters$7

Characters$8

Characters$9

Constructors$1

Constructors$10

Constructors$2

Constructors$3

Constructors$4

Constructors$5

Constructors$6

Constructors$7

Constructors$8

Constructors$9

EnumerationChain

Expression

Fields$1

Fields$10

Fields$11

Fields$12

Fields$13

Fields$14

Fields$2

Fields$3

Fields$4

Fields$5

Fields$6

Fields$7

Fields$8

Fields$9

Methods$1

Methods$10

Methods$11

Methods$12

Methods$13

Methods$14

Methods$15

Methods$16

Methods$17

Methods$2

Methods$3

Methods$4

Methods$5

Methods$6

Methods$7

Methods$8

Methods$9

Parameters$1

Parameters$10

Parameters$11

Parameters$12

Parameters$2

Parameters$3

Parameters$4

Parameters$5

Parameters$6

Parameters$7

Parameters$8

Parameters$9

ParseException

ReflectionException

Strings$1

Strings$10

Strings$11

Strings$12

Strings$13

Strings$14

Strings$15

Strings$16

Strings$17

Strings$2

Strings$3

Strings$4

Strings$5

Strings$6

Strings$7

Strings$8

Strings$9

Throwables$1

Throwables$2

Throwables$3

Throwables$4

Throwables$5

TokenizedStrings$1

TokenizedStrings$2

TokenizedStrings$3

TokenizedStrings$4

TokenizedStrings$5

TokenizedStrings$6

TokenizedStrings$7

TokenizedStrings$8

TokenizedStrings$9

Types$1

Types$10

Types$11

Types$12

Types$13

Types$14

Types$15

Types$16

Types$17

Types$18

Types$19

Types$2

Types$20

Types$21

Types$22

Types$23

Types$24

Types$25

Types$26

Types$27

Types$28

Types$29

Types$3

Types$30

Types$31

Types$32

Types$33

Types$4

Types$5

Types$6

Types$7

Types$8

Types$9

com.lonniepryor.blues

com.lonniepryor.blues.aop

com.lonniepryor.blues.cfg

com.lonniepryor.blues.sys

com.lonniepryor.blues.xml

java.beans

java.lang

java.lang.reflect

java.math

java.util

Cycles

[ summary ] [ packages ] [ cycles ] [ explanations ]

Package Cyclic Dependencies
com.lonniepryor.blues com.lonniepryor.blues.sys

com.lonniepryor.blues

com.lonniepryor.blues.sys com.lonniepryor.blues

com.lonniepryor.blues.sys

Explanations

[ summary ] [ packages ] [ cycles ] [ explanations ]

The following explanations are for quick reference and are lifted directly from the original JDepend documentation .

Term Description
Number of Classes The number of concrete and abstract classes (and interfaces) in the package is an indicator of the extensibility of the package.
Afferent Couplings The number of other packages that depend upon classes within the package is an indicator of the package's responsibility.
Efferent Couplings The number of other packages that the classes in the package depend upon is an indicator of the package's independence.
Abstractness 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 The ratio of efferent coupling (Ce) to total coupling (Ce / (Ce + Ca)). This metric is an indicator of the package's resilience to change. 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 The perpendicular distance of a package from the idealized line A + I = 1. This metric is an indicator of the package's balance between abstractness and stability. A package squarely on the main sequence is optimally balanced with respect to its abstractness and stability. Ideal packages are either completely abstract and stable (x=0, y=1) or completely concrete and instable (x=1, y=0). The range for this metric is 0 to 1, with D=0 indicating a package that is coincident with the main sequence and D=1 indicating a package that is as far from the main sequence as possible.
Cycles Packages participating in a package dependency cycle are in a deadly embrace with respect to reusability and their release cycle. Package dependency cycles can be easily identified by reviewing the textual reports of dependency cycles. Once these dependency cycles have been identified with JDepend, they can be broken by employing various object-oriented techniques.