Package com.sun.jdi.request

Examples of com.sun.jdi.request.StepRequest.depth()


            int lastLine = DefaultExecutionTracker.this.lineNumber;
            DefaultExecutionTracker.this.stateChanged(e.thread(), e.location());
            SearchResult stepOverResult;
            try {
                StepRequest r = (StepRequest) e.request();
                if (r.depth() == StepRequest.STEP_OVER) {
                    stepOverResult = DefaultExecutionTracker.this.stepOverEvents(e.thread().frameCount(), lastLine, e.location().lineNumber());
                    liveLine = e.location().lineNumber();
                    stepOverResult.live = true;
                    stepOverResult.liveStack = e.thread().frames();
                    runningLive = true;
View Full Code Here


                    stepOverResult.liveStack = e.thread().frames();
                    runningLive = true;
                    stepOverResult.behavior = getTODSession().getTODHandler().getMethodBehavior(e.location().method());
                    update(stepOverResult, false, true);
                    fireStepOverToListeners(stepOverResult);
                } else if (r.depth() == StepRequest.STEP_INTO) {
                    stepOverResult = DefaultExecutionTracker.this.stepOverEvents(e.thread().frameCount(), lastLine, e.location().lineNumber());
                    liveLine = e.location().lineNumber();
                    stepOverResult.behavior = getTODSession().getTODHandler().getMethodBehavior(e.location().method());
                    stepOverResult.live = true;
                    stepOverResult.liveStack = e.thread().frames();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.