PreferenceChangeEventpublic class PreferenceChangeEvent extends EventObject implements SerializableThis is the event class to indicate that a preference has been added, deleted
or updated.
Please note that the serialization functionality has not yet been implemented, so
the serialization methods do nothing but throw a {@code NotSerializableException}.
|
Fields Summary |
---|
private static final long | serialVersionUID | private final Preferences | node | private final String | key | private final String | value |
Constructors Summary |
---|
public PreferenceChangeEvent(Preferences p, String k, String v)Construct a new {@code PreferenceChangeEvent} instance.
super(p);
node = p;
key = k;
value = v;
|
|