//return project.getLocation().toOSString() + "/" + getFileName();
IResource file = project.findMember(path);
- return file.getLocation().toOSString();
+ return file.getProjectRelativePath().toOSString();
}
public String getFileName() {
IProject project = getProject().getProject();
if (!useRemoteDebugger())
- return project.getLocation().toOSString();
+ return project.getFullPath().toOSString();
else {
try {
return configuration.getAttribute(
return false;
}
+ public boolean useRelaunchOnScriptTermination() {
+ try {
+ return configuration
+ .getAttribute(
+ PHPLaunchConfigurationAttribute.RELAUNCH_ON_SCRIPT_TERMINATION,
+ false);
+ } catch (CoreException e) {
+ PHPLaunchingPlugin.log(e);
+ }
+ return false;
+ }
}