Package com.ibm.wala.classLoader
Interface Module
-
- All Known Subinterfaces:
SourceModule
- All Known Implementing Classes:
AbstractNestedJarFileModule
,AbstractURLModule
,BinaryDirectoryTreeModule
,ClassFileModule
,CompoundModule
,DexFileModule
,DirectoryTreeModule
,FileModule
,JarFileModule
,JarStreamModule
,NestedJarFileModule
,ResourceJarFileModule
,SourceDirectoryTreeModule
,SourceFileModule
,SourceURLModule
public interface Module
AModule
represents a set of files to analyze. eg., a Jar file. These are persistent (hung onto byClassLoaderImpl
) .. so, a Module should not hold onto a lot of data.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Iterator<? extends ModuleEntry>
getEntries()
-
-
-
Method Detail
-
getEntries
Iterator<? extends ModuleEntry> getEntries()
- Returns:
- an Iterator of the ModuleEntries in this Module.
-
-