Patch from Martin Koegler:
authoraxelcl <axelcl>
Mon, 27 Jun 2005 17:16:39 +0000 (17:16 +0000)
committeraxelcl <axelcl>
Mon, 27 Jun 2005 17:16:39 +0000 (17:16 +0000)
phpeclipse does not lists php breakpoints as supported
breakpoints. (There is a button for showing the breakpoints the
current debug process in the breakpoint window). The following patch
shows all PHP breakpoints in this case (instead of none):

net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/model/PHPDebugTarget.java

index 3471fd4..d5e58f6 100644 (file)
@@ -96,6 +96,9 @@ public class PHPDebugTarget implements IPHPDebugTarget, ILaunchListener, IDebugE
        }
 
        public boolean supportsBreakpoint(IBreakpoint arg0) {
+           if(arg0.getModelIdentifier().equals(PHPDebugCorePlugin.PLUGIN_ID)) {
+            return true;
+           }
                return false;
        }