Interface ModuleEntry
- All Known Subinterfaces:
MappedSourceModule, SourceModule
- All Known Implementing Classes:
AbstractURLModule, ClassFileModule, ClassFileURLModule, CompoundModule, DexModuleEntry, EclipseSourceFileModule, FileModule, JarFileEntry, JSCallGraphUtil.Bootstrap, MappedSourceFileModule, NodejsRequiredCoreModule, NodejsRequiredSourceModule, SourceFileModule, SourceURLModule
public interface ModuleEntry
A ModuleEntry represents a wrapper around a file representation in a
Module.-
Method Details
-
getName
String getName()- Returns:
- a String that represents the name of the file described by this object
-
isClassFile
boolean isClassFile()- Returns:
- true if the file is a class file.
-
isSourceFile
boolean isSourceFile()- Returns:
- true if the file is a source file.
-
getInputStream
InputStream getInputStream()- Returns:
- an InputStream which provides the contents of this logical file.
-
isModuleFile
boolean isModuleFile()- Returns:
- true iff this module entry (file) represents a module in its own right. e.g., a jar file which is an entry in another jar file.
-
asModule
-
getClassName
String getClassName()- Returns:
- the name of the class represented by this entry
- Throws:
UnsupportedOperationException- if !isClassFile() and !isSourceFile()
-
getContainer
Module getContainer()the containing module
-