NodeChangeEvent

public class NodeChangeEvent
extends EventObject

java.lang.Object
   ↳ java.util.EventObject
     ↳ java.util.prefs.NodeChangeEvent


An event emitted by a Preferences node to indicate that a child of that node has been added or removed.

Note, that although NodeChangeEvent inherits Serializable interface from java.util.EventObject, it is not intended to be Serializable. Appropriate serialization methods are implemented to throw NotSerializableException.

Summary

Inherited fields

Public constructors

NodeChangeEvent(Preferences parent, Preferences child)

Constructs a new NodeChangeEvent instance.

Public methods

Preferences getChild()

Returns the node that was added or removed.

Preferences getParent()

Returns the parent of the node that was added or removed.

Inherited methods

Public constructors

NodeChangeEvent

Added in API level 1
public NodeChangeEvent (Preferences parent, 
                Preferences child)

Constructs a new NodeChangeEvent instance.

Parameters
parent Preferences: The parent of the node that was added or removed.

child Preferences: The node that was added or removed.

Public methods

getChild

Added in API level 1
public Preferences getChild ()

Returns the node that was added or removed.

Returns
Preferences The node that was added or removed.

getParent

Added in API level 1
public Preferences getParent ()

Returns the parent of the node that was added or removed.

Returns
Preferences The parent Preferences node whose child was added or removed