Package com.ibm.wala.classLoader
Class CompoundModule
- java.lang.Object
-
- com.ibm.wala.classLoader.CompoundModule
-
- All Implemented Interfaces:
Module
,ModuleEntry
,SourceModule
public class CompoundModule extends Object implements ModuleEntry, Module, SourceModule
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
CompoundModule.Reader
-
Constructor Summary
Constructors Constructor Description CompoundModule(URL name, SourceModule[] constituents)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Module
asModule()
Precondition: isModuleFile().String
getClassName()
SourceModule[]
getConstituents()
Module
getContainer()
the containing moduleIterator<ModuleEntry>
getEntries()
CompoundModule.Reader
getInputReader()
InputStream
getInputStream()
String
getName()
URL
getURL()
boolean
isClassFile()
boolean
isModuleFile()
boolean
isSourceFile()
-
-
-
Constructor Detail
-
CompoundModule
public CompoundModule(URL name, SourceModule[] constituents)
-
-
Method Detail
-
getConstituents
public SourceModule[] getConstituents()
-
getEntries
public Iterator<ModuleEntry> getEntries()
- Specified by:
getEntries
in interfaceModule
- Returns:
- an Iterator of the ModuleEntries in this Module.
-
isModuleFile
public boolean isModuleFile()
- Specified by:
isModuleFile
in interfaceModuleEntry
- 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
public Module asModule()
Description copied from interface:ModuleEntry
Precondition: isModuleFile().- Specified by:
asModule
in interfaceModuleEntry
- Returns:
- a Module view of this entry.
-
getClassName
public String getClassName()
- Specified by:
getClassName
in interfaceModuleEntry
- Returns:
- the name of the class represented by this entry
-
getName
public String getName()
- Specified by:
getName
in interfaceModuleEntry
- Returns:
- a String that represents the name of the file described by this object
-
getURL
public URL getURL()
- Specified by:
getURL
in interfaceSourceModule
-
isClassFile
public boolean isClassFile()
- Specified by:
isClassFile
in interfaceModuleEntry
- Returns:
- true if the file is a class file.
-
isSourceFile
public boolean isSourceFile()
- Specified by:
isSourceFile
in interfaceModuleEntry
- Returns:
- true if the file is a source file.
-
getInputStream
public InputStream getInputStream()
- Specified by:
getInputStream
in interfaceModuleEntry
- Returns:
- an InputStream which provides the contents of this logical file.
-
getInputReader
public CompoundModule.Reader getInputReader()
- Specified by:
getInputReader
in interfaceSourceModule
-
getContainer
public Module getContainer()
Description copied from interface:ModuleEntry
the containing module- Specified by:
getContainer
in interfaceModuleEntry
-
-