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.
Inherited fields |
---|
From
class
java.util.EventObject
|
Public constructors | |
---|---|
NodeChangeEvent(Preferences parent, Preferences child)
Constructs a new |
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 | |
---|---|
From
class
java.util.EventObject
| |
From
class
java.lang.Object
|
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.
|
Preferences getChild ()
Returns the node that was added or removed.
Returns | |
---|---|
Preferences |
The node that was added or removed. |
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 |