A B C D E F G I J L M N O P R S T U V W Y _

A

accessWatchpoint(Field, Closure) - Method in class org.kohsuke.youdebug.VM
Sets a breakpoint that fires when the specified field is read.
accessWatchpoint(String, String, Closure) - Method in class org.kohsuke.youdebug.VM
Sets a breakpoint that fires when the specified field of the specified class is read.
accessWatchpoint(Class, String, Closure) - Method in class org.kohsuke.youdebug.VM
Same as accessWatchpoint(c.name,fieldName,body)
addClassExclusionFilter(String) - Method in class org.kohsuke.youdebug.BundledExceptionRequest
 
addClassExclusionFilter(String) - Method in class org.kohsuke.youdebug.BundledWatchpointRequest
Restricts the events generated by this request to those whose location is in a class whose name does not match this restricted regular expression.
addClassFilter(ReferenceType) - Method in class org.kohsuke.youdebug.BundledExceptionRequest
 
addClassFilter(String) - Method in class org.kohsuke.youdebug.BundledExceptionRequest
 
addClassFilter(ReferenceType) - Method in class org.kohsuke.youdebug.BundledWatchpointRequest
Restricts the events generated by this request to those whose location is in the given reference type or any of its subtypes.
addClassFilter(String) - Method in class org.kohsuke.youdebug.BundledWatchpointRequest
Restricts the events generated by this request to those whose location is in a class whose name matches a restricted regular expression.
addCountFilter(int) - Method in class org.kohsuke.youdebug.BundledEventRequest
 
addInstanceFilter(ObjectReference) - Method in class org.kohsuke.youdebug.BundledBreakpointRequest
Restricts the events generated by this request to those in which the currently executing instance is the object specified.
addInstanceFilter(ObjectReference) - Method in class org.kohsuke.youdebug.BundledExceptionRequest
 
addInstanceFilter(ObjectReference) - Method in class org.kohsuke.youdebug.BundledWatchpointRequest
Restricts the events generated by this request to those in which the currently executing instance ("this") is the object specified.
addThreadFilter(ThreadReference) - Method in class org.kohsuke.youdebug.BundledBreakpointRequest
Restricts the events generated by this request to those in the given thread.
addThreadFilter(ThreadReference) - Method in class org.kohsuke.youdebug.BundledExceptionRequest
 
addThreadFilter(ThreadReference) - Method in class org.kohsuke.youdebug.BundledWatchpointRequest
Restricts the events generated by this request to those in the given thread.
allInterfaces(InterfaceType) - Static method in class org.kohsuke.youdebug.JDICategory
 

B

breakpoint(String, int, Closure) - Method in class org.kohsuke.youdebug.VM
Sets a break point at the specified line in the specified class, and if it hits, invoke the closure.
breakpoint(Class, int, Closure) - Method in class org.kohsuke.youdebug.VM
Same as breakpoint(String, int, Closure) except you specify the class by using a reference to the class in this JVM.
breakpoint(ReferenceType, int, Closure) - Method in class org.kohsuke.youdebug.VM
Same as breakpoint(String, int, Closure) except you specify the class by using a remote reference ReferenceType.
BundledBreakpointRequest - Class in org.kohsuke.youdebug
Possibly multiple BreakpointRequests bundled into one unit for convenient use.
BundledEventRequest<E extends com.sun.jdi.request.EventRequest> - Class in org.kohsuke.youdebug
Multiple EventRequest bundled into one for single point of control.
BundledExceptionRequest - Class in org.kohsuke.youdebug
 
BundledExceptionRequest(ClassPrepareRequest, List) - Constructor for class org.kohsuke.youdebug.BundledExceptionRequest
 
BundledExceptionRequest(List) - Constructor for class org.kohsuke.youdebug.BundledExceptionRequest
 
BundledWatchpointRequest - Class in org.kohsuke.youdebug
Multiple WatchpointRequests bundled to behave as one WatchpointRequest.
BundledWatchpointRequest(ClassPrepareRequest, List) - Constructor for class org.kohsuke.youdebug.BundledWatchpointRequest
 
byName(String) - Method in class org.kohsuke.youdebug.ThreadList
Gets a thread by its Thread.getName().

C

CAUGHT - Static variable in class org.kohsuke.youdebug.VM
 
classPrepare(String, Closure) - Method in class org.kohsuke.youdebug.VM
Sets a break point to be fired when a class of the specified name is loaded into the JVM.
classPrepare(Class, Closure) - Method in class org.kohsuke.youdebug.VM
Same as classPrepare(String, Closure) except you specify the class by using a reference to the class in this JVM.
close() - Method in class org.kohsuke.youdebug.VM
Shuts down the connection.
connectLocal(int) - Static method in class org.kohsuke.youdebug.VMFactory
 
connectRemote(String, int) - Static method in class org.kohsuke.youdebug.VMFactory
Connects via a socket
current() - Static method in class org.kohsuke.youdebug.VM
Can be called during event dispatching to obtain the current VM instance.

D

debugLevel - Variable in class org.kohsuke.youdebug.YouDebug
 
delete() - Method in class org.kohsuke.youdebug.BundledEventRequest
 
delete(EventRequest) - Static method in class org.kohsuke.youdebug.JDICategory
Deletes this event request.
disable() - Method in class org.kohsuke.youdebug.BundledEventRequest
 
dispatchEvents() - Method in class org.kohsuke.youdebug.VM
Dispatches events received from the target JVM until the connection is closed, the remote JVM exits, or the thread ges interrupted.
dumpAllThreads() - Method in class org.kohsuke.youdebug.VM
Short for dumpAllThreads(System.out)
dumpAllThreads(PrintStream) - Method in class org.kohsuke.youdebug.VM
Dumps information about all the threads in the target JVM to the specified object.
dumpAllThreads(PrintWriter) - Method in class org.kohsuke.youdebug.VM
Dumps information about all the threads in the target JVM to the specified object.
dumpHeap(String) - Method in class org.kohsuke.youdebug.VM
Instructs the target JVM to create a heap dump.
dumpStackTrace(ObjectReference, Object) - Static method in class org.kohsuke.youdebug.JDICategory
Dumps the stack trace of an exception.
dumpThread(ThreadReference, Object) - Static method in class org.kohsuke.youdebug.JDICategory
Dumps the current thread stack

E

enable() - Method in class org.kohsuke.youdebug.BundledEventRequest
 
exception() - Method in class org.kohsuke.youdebug.BundledExceptionRequest
 
exceptionBreakpoint(ReferenceType, Collection, Closure) - Method in class org.kohsuke.youdebug.VM
Same as #exceptionBreakpoint(String, Collection, Closure) except you specify the exception type by a remote reference of the type.
exceptionBreakpoint(String, Collection, Closure) - Method in class org.kohsuke.youdebug.VM
Sets a break point that hits upon an exception.
exceptionBreakpoint(Class, Collection, Closure) - Method in class org.kohsuke.youdebug.VM
Same as #exceptionBreakpoint(String, Collection, Closure) except you specify the exception type by a local class of the same name.
exceptionBreakpoint(Class, Closure) - Method in class org.kohsuke.youdebug.VM
Short for exceptionBreakpoint(exceptionClass,null,c), to get notified for both kinds of exceptions.
exceptionBreakpoint(ReferenceType, Closure) - Method in class org.kohsuke.youdebug.VM
Short for exceptionBreakpoint(exceptionClass,null,c), to get notified for both kinds of exceptions.
exceptionBreakpoint(String, Closure) - Method in class org.kohsuke.youdebug.VM
Short for exceptionBreakpoint(exceptionClass,null,c), to get notified for both kinds of exceptions.
ExceptionBreakpointModifier - Enum in org.kohsuke.youdebug
 
exceptions() - Method in class org.kohsuke.youdebug.BundledExceptionRequest
 
execute(InputStream) - Method in class org.kohsuke.youdebug.VM
Executes the specified YouDebug script.
execute(File) - Method in class org.kohsuke.youdebug.VM
Executes the specified YouDebug script.
execute(URL) - Method in class org.kohsuke.youdebug.VM
Executes the specified YouDebug script.
execute(GroovyCodeSource) - Method in class org.kohsuke.youdebug.VM
Executes the specified YouDebug script.
execute(GroovyCodeSource, Map) - Method in class org.kohsuke.youdebug.VM
Executes the given YouDebug script.

F

FailedAssignmentException - Exception in org.kohsuke.youdebug
Indicates that the field assignment failed.
FailedAssignmentException() - Constructor for exception org.kohsuke.youdebug.FailedAssignmentException
 
FailedAssignmentException(String) - Constructor for exception org.kohsuke.youdebug.FailedAssignmentException
 
FailedAssignmentException(String, Throwable) - Constructor for exception org.kohsuke.youdebug.FailedAssignmentException
 
FailedAssignmentException(Throwable) - Constructor for exception org.kohsuke.youdebug.FailedAssignmentException
 
forEachClass(String, Closure) - Method in class org.kohsuke.youdebug.VM
Executes the given closure for each class of the given name.

G

getAt(ArrayReference, int) - Static method in class org.kohsuke.youdebug.JDICategory
Index access to array.
getAt(String) - Method in class org.kohsuke.youdebug.ThreadList
threads[name] for Groovy
getCurrentEvent() - Method in class org.kohsuke.youdebug.VM
Returns the current debugger event that we are dispatching.
getCurrentThread() - Method in class org.kohsuke.youdebug.VM
Returns the thread that raised the current event.
getHANDLER() - Static method in class org.kohsuke.youdebug.VM
 
getMetaClass() - Method in class org.kohsuke.youdebug.BundledExceptionRequest
 
getMetaClass() - Method in class org.kohsuke.youdebug.BundledWatchpointRequest
 
getMetaClass() - Method in class org.kohsuke.youdebug.JDICategory
 
getMetaClass() - Method in class org.kohsuke.youdebug.VM
 
getProperty(Object) - Method in class org.kohsuke.youdebug.BundledEventRequest
 
getProperty(String) - Method in class org.kohsuke.youdebug.BundledExceptionRequest
 
getProperty(String) - Method in class org.kohsuke.youdebug.BundledWatchpointRequest
 
getProperty(String) - Method in class org.kohsuke.youdebug.JDICategory
 
getProperty(String) - Method in class org.kohsuke.youdebug.VM
 
getStatusMessage(ThreadReference) - Static method in class org.kohsuke.youdebug.JDICategory
 
getThreads() - Method in class org.kohsuke.youdebug.VM
Gets the list of all threads.
getVirtualMachine() - Method in class org.kohsuke.youdebug.VM
Access to the underlying JDI VirtualMachine object.

I

InvocationException - Exception in org.kohsuke.youdebug
Signals an error in invoking a method.
InvocationException(String) - Constructor for exception org.kohsuke.youdebug.InvocationException
 
InvocationException(String, Throwable) - Constructor for exception org.kohsuke.youdebug.InvocationException
 
InvocationException(Throwable) - Constructor for exception org.kohsuke.youdebug.InvocationException
 
invokeMethod(String, Object) - Method in class org.kohsuke.youdebug.BundledExceptionRequest
 
invokeMethod(String, Object) - Method in class org.kohsuke.youdebug.BundledWatchpointRequest
 
invokeMethod(String, Object) - Method in class org.kohsuke.youdebug.JDICategory
 
invokeMethod(String, Object) - Method in class org.kohsuke.youdebug.VM
 
isAssignableFrom(Type, Type) - Static method in class org.kohsuke.youdebug.JDICategory
Is the given value an instance of the given type?
isEmpty() - Method in class org.kohsuke.youdebug.ThreadList
 
isEnabled() - Method in class org.kohsuke.youdebug.BundledEventRequest
 
iterator() - Method in class org.kohsuke.youdebug.ThreadList
 

J

JDICategory - Class in org.kohsuke.youdebug
Method augmentation on top of JDI for Groovy
JDICategory() - Constructor for class org.kohsuke.youdebug.JDICategory
 

L

launch(String) - Static method in class org.kohsuke.youdebug.VMFactory
 
loadClass(String) - Method in class org.kohsuke.youdebug.VM
Instead of just resolving an existing class, load the specified class in the target JVM and returns its reference.
loadClass(Class) - Method in class org.kohsuke.youdebug.VM
 
location() - Method in class org.kohsuke.youdebug.BundledBreakpointRequest
 

M

main(String[]) - Static method in class org.kohsuke.youdebug.YouDebug
 
methodEntryBreakpoint(ReferenceType, String, Closure) - Method in class org.kohsuke.youdebug.VM
 
methodEntryBreakpoint(String, String, Closure) - Method in class org.kohsuke.youdebug.VM
 
methodExitBreakpoint(ReferenceType, String, Closure) - Method in class org.kohsuke.youdebug.VM
 
methodExitBreakpoint(String, String, Closure) - Method in class org.kohsuke.youdebug.VM
 
methodMissing(ObjectReference, String, Object) - Static method in class org.kohsuke.youdebug.JDICategory
Allow method invocation directly on the ObjectReference instance.
methodMissing(ClassType, String, Object) - Static method in class org.kohsuke.youdebug.JDICategory
Static method invocation from ClassType.
modificationWatchpoint(Field, Closure) - Method in class org.kohsuke.youdebug.VM
Sets a breakpoint that fires when the specified field is updated.
modificationWatchpoint(String, String, Closure) - Method in class org.kohsuke.youdebug.VM
Sets a breakpoint that fires when the specified field of the specified class is updated.
modificationWatchpoint(Class, String, Closure) - Method in class org.kohsuke.youdebug.VM
Same as modificationWatchpoint(c.name,fieldName,body)

N

NoSuchMethodException - Exception in org.kohsuke.youdebug
 
NoSuchMethodException(String) - Constructor for exception org.kohsuke.youdebug.NoSuchMethodException
 
notifyCaught() - Method in class org.kohsuke.youdebug.BundledExceptionRequest
 
notifyUncaught() - Method in class org.kohsuke.youdebug.BundledExceptionRequest
 

O

one() - Method in class org.kohsuke.youdebug.BundledEventRequest
 
org.kohsuke.youdebug - package org.kohsuke.youdebug
 

P

pid - Variable in class org.kohsuke.youdebug.YouDebug
 
propertyMissing(ObjectReference, String) - Static method in class org.kohsuke.youdebug.JDICategory
Instance field retrieval.
propertyMissing(ObjectReference, String, Object) - Static method in class org.kohsuke.youdebug.JDICategory
Instance field assignment.
propertyMissing(StackFrame, String) - Static method in class org.kohsuke.youdebug.JDICategory
Read variables visible from the stack frame
propertyMissing(StackFrame, String, Object) - Static method in class org.kohsuke.youdebug.JDICategory
Set variables visible from the stack trace
propertyMissing(ClassType, String) - Static method in class org.kohsuke.youdebug.JDICategory
Static field retrieval.
propertyMissing(ClassType, String, Object) - Static method in class org.kohsuke.youdebug.JDICategory
Static field assignment.
putProperty(Object, Object) - Method in class org.kohsuke.youdebug.BundledEventRequest
 

R

ref(String) - Method in class org.kohsuke.youdebug.VM
Resolves a class by the name.
ref(Class) - Method in class org.kohsuke.youdebug.VM
Resolves the same class on the target JVM.
remote - Variable in class org.kohsuke.youdebug.YouDebug
 
requests - Variable in class org.kohsuke.youdebug.BundledEventRequest
 
resume() - Method in class org.kohsuke.youdebug.VM
 
run() - Method in class org.kohsuke.youdebug.YouDebug
 

S

script - Variable in class org.kohsuke.youdebug.YouDebug
 
setDebugLevel(boolean) - Method in class org.kohsuke.youdebug.YouDebug
 
setEnabled(boolean) - Method in class org.kohsuke.youdebug.BundledEventRequest
 
setMetaClass(MetaClass) - Method in class org.kohsuke.youdebug.BundledExceptionRequest
 
setMetaClass(MetaClass) - Method in class org.kohsuke.youdebug.BundledWatchpointRequest
 
setMetaClass(MetaClass) - Method in class org.kohsuke.youdebug.JDICategory
 
setMetaClass(MetaClass) - Method in class org.kohsuke.youdebug.VM
 
setProperty(String, Object) - Method in class org.kohsuke.youdebug.BundledExceptionRequest
 
setProperty(String, Object) - Method in class org.kohsuke.youdebug.BundledWatchpointRequest
 
setProperty(String, Object) - Method in class org.kohsuke.youdebug.JDICategory
 
setProperty(String, Object) - Method in class org.kohsuke.youdebug.VM
 
setSuspendPolicy(int) - Method in class org.kohsuke.youdebug.BundledEventRequest
 
size() - Method in class org.kohsuke.youdebug.ThreadList
 
suspend() - Method in class org.kohsuke.youdebug.VM
 
suspendPolicy() - Method in class org.kohsuke.youdebug.BundledEventRequest
 

T

ThreadList - Class in org.kohsuke.youdebug
Maintains a list of ThreadReferences that are in the target VM.
toolsJar - Variable in class org.kohsuke.youdebug.YouDebug
 
toString(ObjectReference) - Static method in class org.kohsuke.youdebug.JDICategory
Override the default behavior of Mirror.toString() and instead call the remote Object.toString() method.

U

UNCAUGHT - Static variable in class org.kohsuke.youdebug.VM
 

V

valueOf(String) - Static method in enum org.kohsuke.youdebug.ExceptionBreakpointModifier
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.kohsuke.youdebug.ExceptionBreakpointModifier
Returns an array containing the constants of this enum type, in the order they are declared.
virtualMachine() - Method in class org.kohsuke.youdebug.BundledEventRequest
 
VM - Class in org.kohsuke.youdebug
Debugger view of a Virtual machine.
VM(VirtualMachine) - Constructor for class org.kohsuke.youdebug.VM
 
VMFactory - Class in org.kohsuke.youdebug
Connects to VM in various ways.
VMFactory() - Constructor for class org.kohsuke.youdebug.VMFactory
 

W

withFrozenWorld(Closure) - Method in class org.kohsuke.youdebug.VM
Executes the given closure by suspending the VM.

Y

YouDebug - Class in org.kohsuke.youdebug
Entry point.
YouDebug() - Constructor for class org.kohsuke.youdebug.YouDebug
 

_

_(Class) - Method in class org.kohsuke.youdebug.VM
Short hand for {@link #ref(Class)
_(String) - Method in class org.kohsuke.youdebug.VM
Short hand for {@link #ref(String)
_new(Class, Object) - Method in class org.kohsuke.youdebug.VM
Creates a new instance of the given type in the remote JVM.
_new(String, Object) - Method in class org.kohsuke.youdebug.VM
Creates a new instance of the given type in the remote JVM.
_new(ReferenceType, Object) - Method in class org.kohsuke.youdebug.VM
 

A B C D E F G I J L M N O P R S T U V W Y _

Copyright © 2013. All rights reserved.