1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

comments added

This commit is contained in:
Mikhail Sennikovsky 2007-04-19 17:28:09 +00:00
parent b7c570bd81
commit 12558f79f6

View file

@ -364,9 +364,26 @@ public interface ICConfigurationDescription extends ICSettingContainer, ICSettin
*/
ICLanguageSetting getLanguageSettingForFile(IPath path, boolean ignoreExludeStatus);
/**
* sets the external setting providers to be used for the configuration
*
* @param ids the ids of externalSettinsProvider extensions
*/
void setExternalSettingsProviderIds(String ids[]);
/**
* returns the ids of external setting providers used for the configuration
*
* @return the ids of externalSettinsProvider extensions
*/
String[] getExternalSettingsProviderIds();
void updateExternalSettingsProviders(String[] ids);
/**
* tells the configuration to update the given providers
* In case the specified ids contain provider ids not associated with the configuration,
* those ids will be ignored and will NOT be added to the configuration settings
*
* @param ids the ids of externalSettinsProvider extensions
*/
void updateExternalSettingsProviders(String[] ids) throws WriteAccessException;
}