1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-19 15:05:36 +02:00

Allow public access to project so clients can use it to resolve name conflicts. bug 130823

This commit is contained in:
Ken Ryall 2006-04-28 02:26:06 +00:00
parent f71ec39ffc
commit 85d212d1c4

View file

@ -104,6 +104,10 @@ public class ErrorParserManager extends OutputStream {
}
}
public IProject getProject() {
return fProject;
}
public IPath getWorkingDirectory() {
if (fDirectoryStack.size() != 0) {
return (IPath) fDirectoryStack.lastElement();