Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikhail Sennikovsky2005-06-08 19:19:00 +0000
committerMikhail Sennikovsky2005-06-08 19:19:00 +0000
commitfa2c1a50ab37cebc7024ad9bb983e8d53b4f4b1c (patch)
treee0e5bc28fe3131568ceaa58d91d20ecc144bd54a /build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/macros/IBuildMacroProvider.java
parent4fd7b386b27877219763e4e61786b690be072a69 (diff)
downloadorg.eclipse.cdt-fa2c1a50ab37cebc7024ad9bb983e8d53b4f4b1c.tar.gz
org.eclipse.cdt-fa2c1a50ab37cebc7024ad9bb983e8d53b4f4b1c.tar.xz
org.eclipse.cdt-fa2c1a50ab37cebc7024ad9bb983e8d53b4f4b1c.zip
Some modifications and fixes for the build Environment and Macros were added
Diffstat (limited to 'build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/macros/IBuildMacroProvider.java')
-rw-r--r--build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/macros/IBuildMacroProvider.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/macros/IBuildMacroProvider.java b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/macros/IBuildMacroProvider.java
index edb4aadab60..a943cc680fe 100644
--- a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/macros/IBuildMacroProvider.java
+++ b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/macros/IBuildMacroProvider.java
@@ -42,7 +42,7 @@ public interface IBuildMacroProvider{
* NOTE: the IFileContextData is passed that represents the current file and the option
* for that file because Macro Value Provider needs to know what option should be used
* as a context in case macro is not found for �current file� context
- * 2. IOption � used to represent the currently selected option context
+ * 2. IOptionContextData interface used to represent the currently selected option context
* 3. IConfiguration � used to represent the currently selected configuration context
* 4. IProject � used to represent current project context
* 5. IWorkspace � used to represent current workspace context
@@ -109,6 +109,7 @@ public interface IBuildMacroProvider{
*/
public String[] resolveStringListValue(String value,
String nonexistentMacrosValue,
+ String listDelimiter,
int contextType,
Object contextData) throws BuildMacroException;
@@ -149,6 +150,7 @@ public interface IBuildMacroProvider{
*/
public String[] resolveStringListValueToMakefileFormat(String value,
String nonexistentMacrosValue,
+ String listDelimiter,
int contextType,
Object contextData) throws BuildMacroException;

Back to the top