eclipse beakpoint: stop before leaving a Java method - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T12:24:55Z http://stackoverflow.com/feeds/question/198041 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/198041/eclipse-beakpoint-stop-before-leaving-a-java-method 7 eclipse beakpoint: stop before leaving a Java method Chris Noe 2008-10-13T15:44:33Z 2008-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#198072 0 Answer by MBCook for eclipse beakpoint: stop before leaving a Java method MBCook 2008-10-13T15:54:41Z 2008-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#198218 17 Answer by idrosid for eclipse beakpoint: stop before leaving a Java method idrosid 2008-10-13T16:41:24Z 2008-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#198300 3 Answer by jamesh for eclipse beakpoint: stop before leaving a Java method jamesh 2008-10-13T17:12:08Z 2008-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&amp;pg=PA132&amp;lpg=PA132&amp;dq=%22method+breakpoint%22+%22eclipse%22&amp;source=web&amp;ots=eOj8Od5DLx&amp;sig=g-cThDlC2pZ9Alvk5RD8fZ3-0TU&amp;hl=en" rel="nofollow">Eclipse Cookbook</a>.</p>