Package org.eclipse.php.internal.debug.core.debugger

Examples of org.eclipse.php.internal.debug.core.debugger.AbstractDebuggerConfiguration


        // Set the debugger ID and the configuration delegate for this launch
        // configuration
        String debuggerID = PHPProjectPreferences.getDefaultDebuggerID(project);
        wc.setAttribute(PHPDebugCorePreferenceNames.PHP_DEBUGGER_ID, debuggerID);
        AbstractDebuggerConfiguration debuggerConfiguration = PHPDebuggersRegistry
                .getDebuggerConfiguration(debuggerID);
        wc.setAttribute(
                PHPDebugCorePreferenceNames.CONFIGURATION_DELEGATE_CLASS,
                debuggerConfiguration.getWebLaunchDelegateClass());

        wc.setAttribute(Server.NAME, server.getName());

        wc.setAttribute(Server.FILE_NAME, fileName);
        wc.setAttribute(Server.BASE_URL, "");
View Full Code Here

TOP

Related Classes of org.eclipse.php.internal.debug.core.debugger.AbstractDebuggerConfiguration

Copyright © 2018 www.massapicom. 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.