Categories:
Audio (13)
Biotech (29)
Bytecode (35)
Database (77)
Framework (7)
Game (7)
General (512)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (86)
JavaBeans (16)
JDBC (89)
JDK (337)
JSP (20)
Logging (103)
Mail (54)
Messaging (8)
Network (71)
PDF (94)
Report (7)
Scripting (83)
Security (32)
Server (119)
Servlet (17)
SOAP (24)
Testing (50)
Web (19)
XML (301)
Other Resources:
JarAnalyzer Source Code Files
Apache Ant Source Code Files are inside the JarAnalyzer source package
like JarAnalyzer-src-1.2.zip.
Unzip the source package and go to the "src" sub-directory,
you will see source code files.
Here is the list of Java source code files of the JarAnalyzer 1.2 in \Users\fyicenter\JarAnalyzer\src:
✍: FYIcenter.com
⏎ com/kirkk/analyzer/framework/bcelbundle/JarMetricsImpl.java
package com.kirkk.analyzer.framework.bcelbundle; import com.kirkk.analyzer.framework.*; import java.math.BigDecimal; public class JarMetricsImpl implements JarMetrics { private Jar jar; public JarMetricsImpl(Jar jar) { this.jar = jar; } public BigDecimal calculateAbstractness() { int classCount = jar.getClassCount(); if (classCount == 0) { return new BigDecimal("-1.0"); } BigDecimal totalClassCount = new BigDecimal(new Integer(classCount).toString()); BigDecimal abstractClassCount = new BigDecimal(new Integer(jar.getAbstractClassCount()).toString()); return abstractClassCount.divide(totalClassCount,2, BigDecimal.ROUND_HALF_UP); } public BigDecimal calculateInstability() { int afferent = this.calculateAfferentCoupling(); int efferent = this.calculateEfferentCoupling(); if (afferent + efferent == 0) { return new BigDecimal("-1.0"); } BigDecimal top = new BigDecimal(new Integer(efferent).toString()); BigDecimal bottom = new BigDecimal(new Integer(afferent + efferent).toString()); return top.divide(bottom, 2, BigDecimal.ROUND_HALF_UP); } public int calculateEfferentCoupling() { return jar.getOutgoingDependencies().size(); } public int calculateAfferentCoupling() { return jar.getIncomingDependencies().size(); } public BigDecimal calculateDistance() { BigDecimal abstractness = this.calculateAbstractness(); BigDecimal instability = this.calculateInstability(); if ( abstractness.equals(new BigDecimal("-1.0")) || instability.equals(new BigDecimal("-1.0")) ) { return new BigDecimal("-1.0"); } return abstractness.add(instability).subtract(new BigDecimal("1.00")).abs(); } }
⏎ com/kirkk/analyzer/framework/bcelbundle/JarMetricsImpl.java
Â
Â
⇒ jarscan - JAR File Scanner
⇠Download JarAnalyzer Source Package
⇑ JarAnalyzer by Kirk Knoernschild
⇑⇑ Java/JAR Tools
2021-07-01, 2501👍, 0💬
Popular Posts:
What is the jaxp\SourceValidator.jav aprovided in the Apache Xerces package? I have Apache Xerces 2....
Apache ZooKeeper is an open-source server which enables highly reliable distributed coordination. Ap...
Java Cryptography Extension 1.2.2 JAR File Size and Download Location: File name: jce.jar, jce-1.2.2...
MXP1 is a stable XmlPull parsing engine that is based on ideas from XPP and in particular XPP2 but c...
XML Serializer, Release 2.7.1, allows you to write out XML, HTML etc. as a stream of characters from...