Interface IOptionProvider
- 
- All Known Implementing Classes:
- AbstractFormatterPreferencePage.OptionProvider,- DelegateOptionProvider,- ManagerBasedOptionProvider
 
 public interface IOptionProviderThis class provides Options for certain formatters.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description BooleangetBooleanPreference(String preferenceKey)Reads boolean preference with given keyBooleangetBooleanPreference(String preferenceKey, org.eclipse.core.runtime.preferences.IScopeContext context)Reads boolean preference with given keyIntegergetIntegerPreference(String preferenceKey)Reads integer preference with given keyIntegergetIntegerPreference(String preferenceKey, org.eclipse.core.runtime.preferences.IScopeContext context)Reads integer preference with given keyStringgetStringPreference(String preferenceKey)Reads string preference with given keyStringgetStringPreference(String preferenceKey, org.eclipse.core.runtime.preferences.IScopeContext context)Reads string preference with given key
 
- 
- 
- 
Method Detail- 
getStringPreferenceString getStringPreference(String preferenceKey) Reads string preference with given key- Parameters:
- preferenceKey- The key of the preference, cannot be- null
- Returns:
- The value of the preference, can be null
 
 - 
getIntegerPreferenceInteger getIntegerPreference(String preferenceKey) Reads integer preference with given key- Parameters:
- preferenceKey- The key of the preference, cannot be- null
- Returns:
- The value of the preference, can be null
 
 - 
getBooleanPreferenceBoolean getBooleanPreference(String preferenceKey) Reads boolean preference with given key- Parameters:
- preferenceKey- The key of the preference, cannot be- null
- Returns:
- The value of the preference, can be null
 
 - 
getStringPreferenceString getStringPreference(String preferenceKey, org.eclipse.core.runtime.preferences.IScopeContext context) Reads string preference with given key- Parameters:
- preferenceKey- The key of the preference, cannot be- null
- context- The context to get preference from, can be- null
- Returns:
- The value of the preference, can be null
 
 - 
getIntegerPreferenceInteger getIntegerPreference(String preferenceKey, org.eclipse.core.runtime.preferences.IScopeContext context) Reads integer preference with given key- Parameters:
- preferenceKey- The key of the preference, cannot be- null
- context- The context to get preference from, can be- null
- Returns:
- The value of the preference, can be null
 
 - 
getBooleanPreferenceBoolean getBooleanPreference(String preferenceKey, org.eclipse.core.runtime.preferences.IScopeContext context) Reads boolean preference with given key- Parameters:
- preferenceKey- The key of the preference, cannot be- null
- context- The context to get preference from, can be- null
- Returns:
- The value of the preference, can be null
 
 
- 
 
-