NodeChangeEvent
open class NodeChangeEvent : EventObject
kotlin.Any | ||
↳ | 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
Public constructors | |
---|---|
NodeChangeEvent(parent: Preferences!, child: Preferences!) Constructs a new |
Public methods | |
---|---|
open Preferences! |
getChild() Returns the node that was added or removed. |
open Preferences! |
Returns the parent of the node that was added or removed. |
Inherited functions | |
---|---|
Inherited properties | |
---|---|
Public constructors
NodeChangeEvent
NodeChangeEvent(
parent: Preferences!,
child: Preferences!)
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
open fun getChild(): Preferences!
Returns the node that was added or removed.
Return | |
---|---|
Preferences! |
The node that was added or removed. |
getParent
open fun getParent(): Preferences!
Returns the parent of the node that was added or removed.
Return | |
---|---|
Preferences! |
The parent Preferences node whose child was added or removed |