Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
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/JarPackageImpl.java
package com.kirkk.analyzer.framework.bcelbundle; import com.kirkk.analyzer.framework.JarPackage; import com.kirkk.analyzer.framework.JarClass; import java.util.*; public class JarPackageImpl implements JarPackage { private String packageName; private List classes; public JarPackageImpl(String packageName) { if(packageName== null) { throw new NullPointerException("Package name cannot be null"); } else { this.packageName = packageName; } } public void addClass(JarClass jarClass) { if(classes == null) { classes = new ArrayList(); } classes.add(jarClass); } public List getClasses() { return this.classes; /*Iterator classIterator = this.publicClasses.iterator(); List publicList = new ArrayList(); while (classIterator.hasNext()) { PublicClass cls = (PublicClass) classIterator.next(); if (cls.isPublic()) { publicList.add(cls); } } return publicList;*/ } public int getClassCount() { return this.classes.size(); } public String getLongName() { return this.packageName; } public boolean equals(Object obj) { if(obj instanceof JarPackage) { JarPackage javapackage = (JarPackage)obj; if(getLongName().equals(javapackage.getLongName())) { return true; } } return false; } public int hashCode() { return packageName.hashCode(); } public List getImportedPackageNames() { List importedPackages = new ArrayList(); Iterator classes = this.classes.iterator(); while (classes.hasNext()) { JarClass cls = (JarClass) classes.next(); Iterator packages = cls.getImportedPackageNames().iterator(); while (packages.hasNext()) { String packageName = (String) packages.next(); if (!importedPackages.contains(packageName)) { importedPackages.add(packageName); } } } return importedPackages; } }
⏎ com/kirkk/analyzer/framework/bcelbundle/JarPackageImpl.java
Or download all of them as a single archive file:
File name: JarAnalyzer-1.20-fyi.zip File size: 19949 bytes Release date: 2007-08-03 Download
⇐ Download JarAnalyzer Source Package
2021-07-01, 5577👍, 0💬
Popular Posts:
maven-compat-3.8.6.jar is the JAR file for Apache Maven 3.8.6 Compact module. The JAR file name may ...
How to display XML element type information with the jaxp\TypeInfoWriter.java provided in the Apache...
How to download and install ojdbc5.jar for Oracle 11g R1? ojdbc5.jar for Oracle 11g R1 is a Java 5 J...
Provides support for the runtime platform, core utility methods and the extension registry. JAR File...
Where to find answers to frequently asked questions on Downloading and Installing Connector/J - JDBC...