Spec-Zone .ru
спецификации, руководства, описания, API
|
|
Java Debug Interface DRAFT ea-b118 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface MethodExitEvent extends LocatableEvent
Notification of a method return in the target VM. This event is generated after all code in the method has executed, but the location of this event is the last executed location in the method. Method exit events are generated for both native and non-native methods. Method exit events are not generated if the method terminates with a thrown exception.
EventQueue
Modifier and Type | Method and Description |
---|---|
Method |
method()
Returns the method that was exited. |
Value |
returnValue()
Returns the value that the method will return. |
Methods inherited from interface com.sun.jdi.event.LocatableEvent |
---|
thread |
Methods inherited from interface com.sun.jdi.event.Event |
---|
request |
Methods inherited from interface com.sun.jdi.Mirror |
---|
toString, virtualMachine |
Methods inherited from interface com.sun.jdi.Locatable |
---|
location |
Method Detail |
---|
Method method()
Method
which mirrors the method that was exited.ObjectCollectedException
- may be thrown if class
has been garbage collected.Value returnValue()
canGetMethodReturnValues()
to determine if this operation is supported.
Value
which mirrors the value to be returned.UnsupportedOperationException
- if
the target virtual machine does not support this
operation - see
canGetMethodReturnValues()
|
Java Debug Interface DRAFT ea-b118 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright © 1999, 2010, Oracle Corporation. All rights reserved.