1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-10 03:53:21 +02:00

start of .cdtproject management

This commit is contained in:
David Inglis 2002-08-06 20:27:41 +00:00
parent ce3ece8454
commit e779696228
2 changed files with 3 additions and 3 deletions

View file

@ -11,7 +11,7 @@ public interface ICProjectDescriptor {
public static final String DESCRIPTION_FILE_NAME = ".cdtproject";
public ICProjectOwnerInfo getProjectOwner();
public String[] getPlatforms();
public String getPlatform();
public IProject getProject();
// public IBuilderInfo getBuilderInfo();
// public setBuilder(String id) or should this be add... ?

View file

@ -115,8 +115,8 @@ public class CProjectDescriptor implements ICProjectDescriptor {
return new CProjectOwner(ownerId);
}
public String[] getPlatforms() {
return new String[0];
public String getPlatform() {
return "";
}
protected String getString(Node target, String tagName) {