package classes
- Alphabetic
- Public
- All
Type Members
-
trait
ClassManager
extends AnyRef
Represents a manager of classes available on the virtual machine and their associated files.
-
trait
ClassPrepareManager
extends AnyRef
Represents the manager for class prepare requests.
-
case class
ClassPrepareRequestInfo
(requestId: String, isPending: Boolean, extraArguments: Seq[JDIRequestArgument] = Nil) extends RequestInfo with Product with Serializable
Represents information about a class prepare request.
Represents information about a class prepare request.
- requestId
The id of the request
- isPending
Whether or not this request is pending (not on remote JVM)
- extraArguments
The additional arguments provided to the class prepare request
-
trait
ClassUnloadManager
extends AnyRef
Represents the manager for class unload requests.
-
case class
ClassUnloadRequestInfo
(requestId: String, isPending: Boolean, extraArguments: Seq[JDIRequestArgument] = Nil) extends RequestInfo with Product with Serializable
Represents information about a class unload request.
Represents information about a class unload request.
- requestId
The id of the request
- isPending
Whether or not this request is pending (not on remote JVM)
- extraArguments
The additional arguments provided to the class unload request
-
class
DummyClassPrepareManager
extends ClassPrepareManager
Represents a class prepare manager whose operations do nothing.
-
class
DummyClassUnloadManager
extends ClassUnloadManager
Represents a class unload manager whose operations do nothing.
-
trait
PendingClassPrepareSupport
extends PendingClassPrepareSupportLike
Provides pending class prepare capabilities to an existing class prepare manager.
-
trait
PendingClassPrepareSupportLike
extends ClassPrepareManager with PendingRequestSupport
Provides pending class prepare capabilities to an existing class prepare manager.
-
trait
PendingClassUnloadSupport
extends PendingClassUnloadSupportLike
Provides pending class unload capabilities to an existing class unload manager.
-
trait
PendingClassUnloadSupportLike
extends ClassUnloadManager with PendingRequestSupport
Provides pending class unload capabilities to an existing class unload manager.
-
class
StandardClassManager
extends ClassManager with JDIHelperMethods with Logging
Represents a manager of classes available on the virtual machine and their associated files.
-
class
StandardClassPrepareManager
extends ClassPrepareManager with Logging
Represents the manager for class prepare requests.
-
class
StandardClassUnloadManager
extends ClassUnloadManager with Logging
Represents the manager for class unload requests.
-
trait
StandardPendingClassPrepareSupport
extends PendingClassPrepareSupport
Provides pending class prepare capabilities to an existing class prepare manager.
Provides pending class prepare capabilities to an existing class prepare manager.
Contains an internal pending action manager.
-
trait
StandardPendingClassUnloadSupport
extends PendingClassUnloadSupport
Provides pending class unload capabilities to an existing class unload manager.
Provides pending class unload capabilities to an existing class unload manager.
Contains an internal pending action manager.
Value Members
-
object
ClassManager
Represents the container for constants used in the class manager.