The interface to be implemented by node mutation listeners added via sbIServicePaneNode.addListener() More...
import"sbIServicePaneService.idl";
Public Member Functions | |
void | attrModified (in sbIServicePaneNode aNode, in AString aAttrName, in AString aNamespace, in AString aOldVal, in AString aNewVal) |
Called after a node attribute changes. More... | |
void | nodeInserted (in sbIServicePaneNode aNode, in sbIServicePaneNode aParent, in sbIServicePaneNode aInsertBefores) |
Called after a node is added to the service pane tree. More... | |
void | nodeRemoved (in sbIServicePaneNode aNode, in sbIServicePaneNode aParent) |
Called after a node is removed from the service pane tree. More... | |
The interface to be implemented by node mutation listeners added via sbIServicePaneNode.addListener()
Definition at line 181 of file sbIServicePaneService.idl.
void sbIServicePaneMutationListener::attrModified | ( | in sbIServicePaneNode | aNode, |
in AString | aAttrName, | ||
in AString | aNamespace, | ||
in AString | aOldVal, | ||
in AString | aNewVal | ||
) |
Called after a node attribute changes.
aNode | service pane node that was changed |
aAttrName | name of the attribute modified |
aNamespace | namespace of the attribute (can be null) |
aOldVal | old attribute value (will be null for new attributes) |
aNewVal | new attribute value (will ne null if attribute is removed) |
void sbIServicePaneMutationListener::nodeInserted | ( | in sbIServicePaneNode | aNode, |
in sbIServicePaneNode | aParent, | ||
in sbIServicePaneNode | aInsertBefores | ||
) |
Called after a node is added to the service pane tree.
aNode | service pane node that was added |
aParent | new parent node |
void sbIServicePaneMutationListener::nodeRemoved | ( | in sbIServicePaneNode | aNode, |
in sbIServicePaneNode | aParent | ||
) |
Called after a node is removed from the service pane tree.
aNode | service pane node that was removed |
aParent | old parent node |