open class Child : Type
Represents the type of events raised when something happens to some child of a data node.
Subclasses of the Child event type may be combined using the Child.plus and Child.minus operators to watch several elementary events at once.
object Addition : Child
Events of the Child type that are raised when a new child is added to a data node.  | 
|
object Change : Child
Events of the Child type that are raised when the value of a child of a data node changes.  | 
|
object Removal : Child
Events of the Child type that are raised when a child is removed from a data node.  | 
operator fun minus(other: Child): Child
 | 
|
operator fun plus(other: Child): Child
Adds two Child event types.  | 
object Addition : Child
Events of the Child type that are raised when a new child is added to a data node.  | 
|
object Change : Child
Events of the Child type that are raised when the value of a child of a data node changes.  | 
|
object Removal : Child
Events of the Child type that are raised when a child is removed from a data node.  |