Interface UserPreferencesAdapter
- All Known Implementing Classes:
UserPreferencesStore
public interface UserPreferencesAdapter
This interface needs to be implemented by an IDE extension in order for AJDE
to store properties in a way that matches the IDE's property storing facilities.
- Author:
- Mik Kersten
-
Method Summary
Modifier and TypeMethodDescriptionRetrieves a global IDE option.getGlobalPreference(String name) Retrieves a global IDE option.Retrieves an option for the currently active project.getProjectPreference(String name) Retrieves an option for the currently active project.voidsetGlobalMultivalPreference(String name, List values) Sets a global IDE option with multiple values.voidsetGlobalPreference(String name, String value) Sets a global IDE option with a single value.voidsetProjectMultivalPreference(String name, List values) Sets an option for the currently active project.voidsetProjectPreference(String name, String value) Sets an option for the currently active project.
-
Method Details
-
getGlobalPreference
-
getGlobalMultivalPreference
-
setGlobalPreference
-
setGlobalMultivalPreference
-
getProjectPreference
-
getProjectMultivalPreference
-
setProjectPreference
-
setProjectMultivalPreference
-