Top Description Fields Methods
com.sun.jdi

public Interface ModuleReference

extends ObjectReference
Known Direct Implementers
com.sun.tools.jdi.ModuleReferenceImpl
Imports
com.sun.jdi.event.EventQueue, .VMDisconnectEvent

A module in the target VM.

Any method on ModuleReference which directly or indirectly takes ModuleReference as a parameter may throw VMDisconnectedException if the target VM is disconnected and the VMDisconnectEvent has been or is available to be read from the EventQueue.

Any method on ModuleReference which directly or indirectly takes ModuleReference as a parameter may throw VMOutOfMemoryException if the target VM has run out of memory.

Any method on ModuleReference or which directly or indirectly takes ModuleReference as a parameter may throw InvalidModuleException if the mirrored module has been unloaded. Not all target virtual machines support this class. Use VirtualMachine#canGetModuleInfo() to determine if the class is supported.

Since
9

Field Summary

Inherited from com.sun.jdi.ObjectReference:
INVOKE_NONVIRTUALINVOKE_SINGLE_THREADED

Method Summary

Modifier and TypeMethod and Description
public ClassLoaderReference

Returns:

the ClassLoaderReference object for this module.
classLoader
()

Returns the ClassLoaderReference object for this module.

public String

Returns:

the name of this module.
name
()

Returns the module name.

Inherited from com.sun.jdi.ObjectReference:
disableCollectionenableCollectionentryCountequalsgetValuegetValueshashCodeinvokeMethodisCollectedowningThreadreferenceTypereferringObjectssetValueuniqueIDwaitingThreads

Method Detail

classLoaderback to summary
public ClassLoaderReference classLoader()

Returns the ClassLoaderReference object for this module.

Returns:ClassLoaderReference

the ClassLoaderReference object for this module.

nameback to summary
public String name()

Returns the module name. This method returns null if this module is an unnamed module.

Returns:String

the name of this module.