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:
parent
ce3ece8454
commit
e779696228
2 changed files with 3 additions and 3 deletions
|
@ -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... ?
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue