- java.lang.Object
-
- java.util.EventObject
-
- java.util.prefs.PreferenceChangeEvent
-
- All Implemented Interfaces:
- Serializable
public class PreferenceChangeEvent extends EventObject
An event emitted by a Preferences node to indicate that a preference has been added, removed or has had its value changed.Note, that although PreferenceChangeEvent inherits Serializable interface from EventObject, it is not intended to be Serializable. Appropriate serialization methods are implemented to throw NotSerializableException.
- Since:
- 1.4
- See Also:
Preferences
,PreferenceChangeListener
,NodeChangeEvent
-
-
Field Summary
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor and Description PreferenceChangeEvent(Preferences node, String key, String newValue)
Constructs a newPreferenceChangeEvent
instance.
-
Method Summary
Methods Modifier and Type Method and Description String
getKey()
Returns the key of the preference that was changed.String
getNewValue()
Returns the new value for the preference.Preferences
getNode()
Returns the preference node that emitted the event.
-
-
-
Constructor Detail
-
PreferenceChangeEvent
public PreferenceChangeEvent(Preferences node, String key, String newValue)
Constructs a newPreferenceChangeEvent
instance.- Parameters:
node
- The Preferences node that emitted the event.key
- The key of the preference that was changed.newValue
- The new value of the preference, or null if the preference is being removed.
-
-
Method Detail
-
getNode
public Preferences getNode()
Returns the preference node that emitted the event.- Returns:
- The preference node that emitted the event.
-
getKey
public String getKey()
Returns the key of the preference that was changed.- Returns:
- The key of the preference that was changed.
-
getNewValue
public String getNewValue()
Returns the new value for the preference.- Returns:
- The new value for the preference, or null if the preference was removed.
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
01/11/2024 00:58:51 Cette version de la page est en cache (à la date du 01/11/2024 00:58:51) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 11/06/2005, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/util/prefs/preferencechangeevent.html/.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.