-
- All Superinterfaces:
Mirror
,ObjectReference
,Value
public interface ModuleReference extends ObjectReference
A module in the target VM.Any method on
ModuleReference
which directly or indirectly takesModuleReference
as a parameter may throwVMDisconnectedException
if the target VM is disconnected and theVMDisconnectEvent
has been or is available to be read from theEventQueue
.Any method on
ModuleReference
which directly or indirectly takesModuleReference
as a parameter may throwVMOutOfMemoryException
if the target VM has run out of memory.Any method on
ModuleReference
or which directly or indirectly takesModuleReference
as a parameter may throwInvalidModuleException
if the mirrored module has been unloaded. Not all target virtual machines support this class. UseVirtualMachine.canGetModuleInfo()
to determine if the class is supported.- Since:
- 9
-
-
Field Summary
-
Fields declared in interface com.sun.jdi.ObjectReference
INVOKE_NONVIRTUAL, INVOKE_SINGLE_THREADED
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClassLoaderReference
classLoader()
Returns theClassLoaderReference
object for this module.String
name()
Returns the module name.-
Methods declared in interface com.sun.jdi.Mirror
toString, virtualMachine
-
Methods declared in interface com.sun.jdi.ObjectReference
disableCollection, enableCollection, entryCount, equals, getValue, getValues, hashCode, invokeMethod, isCollected, owningThread, referenceType, referringObjects, setValue, uniqueID, waitingThreads
-
-
-
-
Method Detail
-
name
String name()
Returns the module name. This method returnsnull
if this module is an unnamed module.- Returns:
- the name of this module.
-
classLoader
ClassLoaderReference classLoader()
Returns theClassLoaderReference
object for this module.- Returns:
- the
ClassLoaderReference
object for this module.
-
-