return debuggerLaunch(DEFAULT_LOCAL_ADDRESS, AWPrefs.getDebugDefaultLocalPort(), false);
}
public void launchRemoteDebugger() {
StatisticsAW.shared().recordEvent(StatisticsAW.EVENT_REMOTE_DEBUGGER);
DBRemoteConnectDialog dialog = new DBRemoteConnectDialog(getWindowContainer());
if(dialog.runModal() == XJDialog.BUTTON_OK) {
debuggerLaunch(dialog.getAddress(), dialog.getPort(), true);
}
}