eclipse beakpoint: stop before leaving a Java method - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T12:24:55Zhttp://stackoverflow.com/feeds/question/198041http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/198041/eclipse-beakpoint-stop-before-leaving-a-java-method7eclipse beakpoint: stop before leaving a Java methodChris Noe2008-10-13T15:44:33Z2008-10-19T22:11:14Z
<p>Is there a way to tell the debugger to stop just before returning, on whichever statement exits from the method, be it return, exception, or fall out the bottom? I am inspired by the fact that the Java editor shows me all the places that my method <em>can</em> exit - it highlights them when you click on the return type of the method declaration, (Mark Occurrences enabled).</p>
<p>[eclipse 3.4]</p>
http://stackoverflow.com/questions/198041/eclipse-beakpoint-stop-before-leaving-a-java-method/198072#1980720Answer by MBCook for eclipse beakpoint: stop before leaving a Java methodMBCook2008-10-13T15:54:41Z2008-10-13T15:54:41Z<p>Good question. Off the top of my head, I'd do this:</p>
<pre><code>public void method(Object stuff) {
try {
/* normal code */
} finally {
int x = 0;
}
}
</code></pre>
<p>You can set the breakpoint on the x = 0 line, and it will ALWAYS be executed no matter where you return. Even with an exception being thrown, it will be run.</p>
<p>The catch to this is scope. Unless you define variables outside of the try block, you won't be able to see their values where you get to the finally block since they will have exited scope.</p>
<p>Having to just place 5 breakpoints (one for each return statement, whatever) may work best.</p>
<p>I hope there is a better way, I'd love to know it.</p>
http://stackoverflow.com/questions/198041/eclipse-beakpoint-stop-before-leaving-a-java-method/198218#19821817Answer by idrosid for eclipse beakpoint: stop before leaving a Java methodidrosid2008-10-13T16:41:24Z2008-10-13T16:52:56Z<p>Put a breakpoint on the line of the method signature. That is where you write</p>
<pre><code>public void myMethod() {
</code></pre>
<p>Then right-click on the breakpoint and select "Breakpoint Properties". At the bottom of the pop-up there are two checkboxes: "Method Entry", "Method Exit". Check the latter.</p>
http://stackoverflow.com/questions/198041/eclipse-beakpoint-stop-before-leaving-a-java-method/198300#1983003Answer by jamesh for eclipse beakpoint: stop before leaving a Java methodjamesh2008-10-13T17:12:08Z2008-10-13T17:12:08Z<p>You can set a method breakpoint. </p>
<p>Double click in the margin next to the method declaration. A breakpoint with an arrow decoration appears. Right-clicking to examine the properties, you can set "Suspend on:" for "Method Entry" and/or "Method Exit".</p>
<p>You can read more about them in the <a href="http://books.google.com/books?id=U4UuyIU6bZAC&pg=PA132&lpg=PA132&dq=%22method+breakpoint%22+%22eclipse%22&source=web&ots=eOj8Od5DLx&sig=g-cThDlC2pZ9Alvk5RD8fZ3-0TU&hl=en" rel="nofollow">Eclipse Cookbook</a>.</p>