Interface JarContent
-
- All Known Implementing Classes:
JarContentImpl
public interface JarContent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AnalysisType
getAnalysisType()
java.util.Collection<java.lang.String>
getClassFiles()
java.util.Map<java.lang.String,java.lang.String>
getManifestEntries()
Nb: Java has a perfectly goodManifest
class since 1.2 which could be used here.
-
-
-
Method Detail
-
getClassFiles
java.util.Collection<java.lang.String> getClassFiles()
- Returns:
- All files which we may want to process.
-
getManifestEntries
java.util.Map<java.lang.String,java.lang.String> getManifestEntries()
Nb: Java has a perfectly goodManifest
class since 1.2 which could be used here. This simplifies the content.- Returns:
- Map of manifest entries.
-
getAnalysisType
AnalysisType getAnalysisType()
- Returns:
- source of data - jar? war?
-
-