Added in API level 1

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

Constructs a new NodeChangeEvent instance.

Public methods
open Preferences!

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

Added in API level 1
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

Added in API level 1
open fun getChild(): Preferences!

Returns the node that was added or removed.

Return
Preferences! The node that was added or removed.

getParent

Added in API level 1
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