java.util.prefs
Interface NodeChangeListener

All Superinterfaces:
EventListener

public interface NodeChangeListener
extends EventListener

EventListener for Preferences node addition/removal.

Note that these events are only generated for the addition and removal of sub nodes from the preference node. Entry changes in the preference node can be monitored with a PreferenceChangeListener.

Since:
1.4

Method Summary
 void childAdded(NodeChangeEvent event)
          Fired when a sub node is added to the preference node.
 void childRemoved(NodeChangeEvent event)
          Fired when a sub node is removed from the preference node.
 

Method Detail

childAdded

void childAdded(NodeChangeEvent event)
Fired when a sub node is added to the preference node.


childRemoved

void childRemoved(NodeChangeEvent event)
Fired when a sub node is removed from the preference node.