14151617181920212223
* @param child Child node to be added */ public void addChildNode(Node child) { if(cntChild == false) { children = new ArrayBackedIndexedCollection(); cntChild = true; } children.add(child); }