Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b05e68b3b6fd3aad68029899f8f02b8abcbf56ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package org.eclipse.cdt.core.resources;

/*
 * (c) Copyright QNX Software Systems Ltd. 2002.
 * All Rights Reserved.
 */

public interface IBuildInfo {
	public static final String SEPARATOR = ",";
	
	String getBuildLocation();
	String getDefinedSymbols();
    String getFullBuildArguments();
    String getIncludePaths();
    String getIncrementalBuildArguments();
    boolean isStopOnError();

	void setBuildLocation(String location);
	void setDefinedSymbols(String symbols);
    void setFullBuildArguments(String arguments);
    void setIncludePaths(String paths);
    void setIncrementalBuildArguments(String arguments);
    void setStopOnError(boolean on);

//    boolean isClearBuildConsole();

    boolean isDefaultBuildCmd();
    void setUseDefaultBuildCmd(boolean on);
}

Back to the top