1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 15:45:25 +02:00

[cleanup] adding class comment

This commit is contained in:
David Dykstal 2007-02-18 19:34:42 +00:00
parent 0afcc3b31a
commit de2172be33

View file

@ -18,6 +18,17 @@ import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jface.util.IPropertyChangeListener;
import org.eclipse.jface.util.PropertyChangeEvent;
/**
* The PreferencesMapper provides an implementation of IPreferenceStore over a "lower level"
* Preferences store. This is a relatively straightforward delegation.
*
* This class is internal and may not be used or subclassed by users of RSE. This should be used
* only within RSE as a means of exploiting field editors on preferences that are stored
* in {@link Preferences}.
*
* @see Preferences
* @see IPreferenceStore
*/
public class PreferencesMapper implements IPreferenceStore {
private Preferences preferences = null;