40 while (attributes.hasMore()) {
41 let attr = attributes.getNext();
42 attrList.push(
" " + attr +
'="' + aNode.getAttribute(attr) +
'"');
45 result += attrList.join(
"");
47 let childNodes = aNode.childNodes;
48 if (childNodes.hasMoreElements()) {
51 while (childNodes.hasMoreElements()) {
52 let child = childNodes.getNext().QueryInterface(
Ci.sbIServicePaneNode);
function serializeTree(aNode)
Common service pane helper functions.