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/JarCollectionDecorator.java

package com.kirkk.analyzer.framework;

public abstract class JarCollectionDecorator implements JarCollection {
	protected JarCollection jarCollection;

	public JarCollectionDecorator(JarCollection jarCollection) {
		this.jarCollection = jarCollection;
	}

	public int getJarCount() {
		return this.jarCollection.getJarCount();
	}

	public boolean hasNext() {
		return this.jarCollection.hasNext();
	}

	public Jar nextJar() {
		return this.jarCollection.nextJar();
	}

	public Jar getJarContainingPackage(String packageName) {
		return this.jarCollection.getJarContainingPackage(packageName);
	}

	public void first() {
		this.jarCollection.first();
	}

	public Jar getJar(String jarName) {
		return this.jarCollection.getJar(jarName);
	}

	public Jar[] toArray() {
		return this.jarCollection.toArray();
	}

}

com/kirkk/analyzer/framework/JarCollectionDecorator.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 

 

jarscan - JAR File Scanner

Download JarAnalyzer Source Package

JarAnalyzer by Kirk Knoernschild

⇑⇑ Java/JAR Tools

2021-07-01, 5570👍, 0💬