1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Fixed encoding problems in comments

This commit is contained in:
Andrew Gvozdev 2010-10-13 22:03:49 +00:00
parent 2a714beac8
commit 37c5e73b7f

View file

@ -68,7 +68,7 @@ public interface ICdtVariableManager{
* expanded to. If null the BuildMacroException is thrown in case the string to be resolved * expanded to. If null the BuildMacroException is thrown in case the string to be resolved
* references inexistent macros * references inexistent macros
* @param listDelimiter if not null, StringList macros are expanded as * @param listDelimiter if not null, StringList macros are expanded as
* <value_1>< listDelimiter ><value_2>< listDelimiter > ... <value_n> * "<value_1>< listDelimiter ><value_2>< listDelimiter > ... <value_n>"
* otherwise the BuildMacroException is thrown in case the string to be resolved references * otherwise the BuildMacroException is thrown in case the string to be resolved references
* string-list macros * string-list macros
*/ */
@ -101,7 +101,7 @@ public interface ICdtVariableManager{
/** /**
* *
* @return true if the specified expression can be treated as StringList * @return true if the specified expression can be treated as StringList
* 1. The string value is ${<some_StringList_Macro_name>} * 1. The string value is "${<some_StringList_Macro_name>}"
*/ */
public boolean isStringListValue(String value, ICConfigurationDescription cfg) public boolean isStringListValue(String value, ICConfigurationDescription cfg)
throws CdtVariableException; throws CdtVariableException;
@ -114,7 +114,7 @@ public interface ICdtVariableManager{
* The BuildMacroException will contain the human-readable string describing * The BuildMacroException will contain the human-readable string describing
* the inconsistency and the array of the IBuildMacro interfaces that will represent the macros that * the inconsistency and the array of the IBuildMacro interfaces that will represent the macros that
* caused the inconsistency. This information will be used in the UI to notify the user about * caused the inconsistency. This information will be used in the UI to notify the user about
* the macro inconsistencies (see also the User interface for viewing and editing Build Macros * the macro inconsistencies (see also the "User interface for viewing and editing Build Macros"
* section of this design) * section of this design)
*/ */
public void checkVariableIntegrity(ICConfigurationDescription cfg) throws CdtVariableException; public void checkVariableIntegrity(ICConfigurationDescription cfg) throws CdtVariableException;