Package com.sun.jdi.event

Examples of com.sun.jdi.event.WatchpointEvent


                                                              modificationEvent.valueToBe(),
                                                              modificationEvent.location() );
                        }
                        else
                        {
                            WatchpointEvent watchpointEvent = (WatchpointEvent) event;
                            handler.onWatchpoint( suspension, event.virtualMachine(), watchpointEvent.thread(),
                                                  (WatchpointRequest) event.request(), watchpointEvent.object(),
                                                  watchpointEvent.field(), watchpointEvent.valueCurrent(),
                                                  watchpointEvent.location() );
                        }
                    }
                    else if ( event instanceof BreakpointEvent )
                    {
                        BreakpointEvent breakpointEvent = (BreakpointEvent) event;
View Full Code Here

TOP

Related Classes of com.sun.jdi.event.WatchpointEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.