Uses of Class
org.openstreetmap.josm.data.Preferences

Packages that use Preferences
org.openstreetmap.josm   
org.openstreetmap.josm.data   
org.openstreetmap.josm.data.oauth   
org.openstreetmap.josm.gui.oauth   
org.openstreetmap.josm.gui.preferences.advanced   
org.openstreetmap.josm.gui.preferences.server   
 

Uses of Preferences in org.openstreetmap.josm
 

Fields in org.openstreetmap.josm declared as Preferences
static Preferences Main.pref
          Global application preferences
 

Uses of Preferences in org.openstreetmap.josm.data
 

Subclasses of Preferences in org.openstreetmap.josm.data
 class ServerSidePreferences
          This class tweak the Preferences class to provide server side preference settings, as example used in the applet version.
 

Fields in org.openstreetmap.josm.data declared as Preferences
(package private)  Preferences CustomConfigurator.XMLCommandProcessor.mainPrefs
           
 

Methods in org.openstreetmap.josm.data that return Preferences
static Preferences CustomConfigurator.clonePreferences(Preferences pref)
           
private  Preferences CustomConfigurator.XMLCommandProcessor.readPreferencesFromDOMElement(org.w3c.dom.Element item)
           
 

Methods in org.openstreetmap.josm.data with parameters of type Preferences
private static void CustomConfigurator.PreferencesUtils.appendPreferences(Preferences fragment, Preferences mainpref)
           
static Preferences CustomConfigurator.clonePreferences(Preferences pref)
           
private static void CustomConfigurator.PreferencesUtils.deletePreferenceKey(java.lang.String key, Preferences pref)
           
private static void CustomConfigurator.PreferencesUtils.deletePreferenceKeyByPattern(java.lang.String pattern, Preferences pref)
           
private static void CustomConfigurator.PreferencesUtils.deletePreferenceValues(Preferences fragment, Preferences mainpref)
          Delete items from @param mainpref collections that match items from @param fragment collections
private static java.util.Collection<java.util.Collection<java.lang.String>> CustomConfigurator.PreferencesUtils.getArray(Preferences mainpref, java.lang.String key, boolean warnUnknownDefault)
           
private static java.util.Collection<java.lang.String> CustomConfigurator.PreferencesUtils.getCollection(Preferences mainpref, java.lang.String key, boolean warnUnknownDefault)
           
private static java.util.List<java.util.Map<java.lang.String,java.lang.String>> CustomConfigurator.PreferencesUtils.getListOfStructs(Preferences mainpref, java.lang.String key, boolean warnUnknownDefault)
           
static void CustomConfigurator.PreferencesUtils.loadPrefsToJS(javax.script.ScriptEngine engine, Preferences tmpPref, java.lang.String whereToPutInJS, boolean includeDefaults)
          Convert preferences data structures to JavaScript object
private static void CustomConfigurator.PreferencesUtils.modifyPreferencesByScript(javax.script.ScriptEngine engine, Preferences tmpPref, java.lang.String js)
           
static void CustomConfigurator.PreferencesUtils.readPrefsFromJS(javax.script.ScriptEngine engine, Preferences tmpPref, java.lang.String varInJS)
          Convert JavaScript preferences object to preferences data structures
static void CustomConfigurator.readXML(java.io.File file, Preferences prefs)
          Read configuration script from XML file, modifying given preferences object
private static void CustomConfigurator.PreferencesUtils.replacePreferences(Preferences fragment, Preferences mainpref)
           
private static void CustomConfigurator.PreferencesUtils.showPrefs(Preferences tmpPref)
           
 

Constructors in org.openstreetmap.josm.data with parameters of type Preferences
CustomConfigurator.XMLCommandProcessor(Preferences mainPrefs)
           
 

Uses of Preferences in org.openstreetmap.josm.data.oauth
 

Methods in org.openstreetmap.josm.data.oauth with parameters of type Preferences
static void OAuthParameters.clearPreferences(Preferences pref)
          Clears the preferences for OAuth parameters
static OAuthParameters OAuthParameters.createFromPreferences(Preferences pref)
          Replies a set of parameters as defined in the preferences.
 void OAuthParameters.saveToPreferences(Preferences pref)
          Saves these OAuth parameters to the given Preferences.
 

Uses of Preferences in org.openstreetmap.josm.gui.oauth
 

Methods in org.openstreetmap.josm.gui.oauth with parameters of type Preferences
 void FullyAutomaticAuthorizationUI.initFromPreferences(Preferences pref)
          Initializes the panel with values from the preferences
 void AdvancedOAuthPropertiesPanel.initFromPreferences(Preferences pref)
          Initializes the panel from the values in the preferences preferences.
 void AbstractAuthorizationUI.initFromPreferences(Preferences pref)
          Initializes the authorisation UI with preference values in pref.
 void AdvancedOAuthPropertiesPanel.rememberPreferences(Preferences pref)
          Remembers the current values in the preferences pref.
 

Uses of Preferences in org.openstreetmap.josm.gui.preferences.advanced
 

Methods in org.openstreetmap.josm.gui.preferences.advanced with parameters of type Preferences
private  void AdvancedPreference.readPreferences(Preferences tmpPrefs)
           
 

Uses of Preferences in org.openstreetmap.josm.gui.preferences.server
 

Methods in org.openstreetmap.josm.gui.preferences.server with parameters of type Preferences
 void OAuthAccessTokenHolder.init(Preferences pref, CredentialsAgent cm)
          Initializes the content of this holder from the Access Token managed by the credential manager.
 void OAuthAccessTokenHolder.save(Preferences preferences, CredentialsAgent cm)
          Saves the content of this holder to the preferences and a credential store managed by a credential manager.
 



JOSM