public interface ClassPrepareEvent extends Event
Modifier and Type | Method | Description |
---|---|---|
ReferenceType |
referenceType() |
Returns the reference type for which this event was generated. |
ThreadReference |
thread() |
Returns the thread in which this event has occurred. |
toString, virtualMachine
ThreadReference thread()
In rare cases, this event may occur in a debugger system thread within the target VM. Debugger threads take precautions to prevent these events, but they cannot be avoided under some conditions, especially for some subclasses of Error
. If the event was generated by a debugger system thread, the value returned by this method is null, and if the requested suspend policy for the event was EventRequest.SUSPEND_EVENT_THREAD
, all threads will be suspended instead, and the EventSet.suspendPolicy()
will reflect this change.
Note that the discussion above does not apply to system threads created by the target VM during its normal (non-debug) operation.
ThreadReference
which mirrors the event's thread in the target VM, or null in the rare cases described above.ReferenceType referenceType()
ReferenceType
which mirrors the class, interface, or array which has been linked.
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/jdk.jdi/com/sun/jdi/event/ClassPrepareEvent.html