public class

NodeChangeEvent

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

Class Overview

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

[Expand]
Inherited Fields
From class java.util.EventObject
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.
[Expand]
Inherited Methods
From class java.util.EventObject
From class java.lang.Object

Public Constructors

public NodeChangeEvent (Preferences parent, Preferences child)

Constructs a new NodeChangeEvent instance.

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

Public Methods

public Preferences getChild ()

Returns the node that was added or removed.

Returns
  • The node that was added or removed.

public Preferences getParent ()

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

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