Start the debugger through setting the url with "?DBGSESSID=1@clienthost:10001" in...
[phpeclipse.git] / net.sourceforge.phpeclipse.launching / src / net / sourceforge / phpdt / internal / launching / InterpreterRunnerConfiguration.java
index d33e69e..b2950d7 100644 (file)
@@ -103,6 +103,15 @@ public class InterpreterRunnerConfiguration {
                return false;
        }
        
+       public boolean useDBGSessionInBrowser() {
+               try {
+                       return configuration.getAttribute(PHPLaunchConfigurationAttribute.OPEN_DBGSESSION_IN_BROWSER, true);
+               } catch(CoreException e) {
+                       PHPLaunchingPlugin.log(e);
+               }
+               return false;
+       }
+       
        public void setEnvironment(String[] envp)
        {
                if (envp== null)