}
ArrayList<ProjectConfigError> lst = new ArrayList<ProjectConfigError>();
if (this.project == null) {
lst.add(new ProjectConfigError(relatedToProject, "The configured nature has no associated project."));
}
IInterpreterInfo info = null;
try {
info = this.getProjectInterpreter();
String executableOrJar = info.getExecutableOrJar();
if (!new File(executableOrJar).exists()) {
lst.add(new ProjectConfigError(relatedToProject,
"The interpreter configured does not exist in the filesystem: " + executableOrJar));
}