Interface DependencyAnalyzer
-
- All Known Implementing Classes:
ASMDependencyAnalyzer
public interface DependencyAnalyzer
Gets the set of classes referenced by a library given either as a jar file or an exploded directory.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<java.lang.String>
analyze(java.net.URL url)
analyze.
-
-
-
Method Detail
-
analyze
java.util.Set<java.lang.String> analyze(java.net.URL url) throws java.io.IOException
analyze.
- Parameters:
url
- the JAR file or directory to analyze- Returns:
- the set of class names referenced by the library
- Throws:
java.io.IOException
- if an error occurs reading a JAR or .class file
-
-