Beispiel #1
0
 /*
  * @see org.primordion.xholon.base.Xholon#cleanup()
  */
 public void cleanup() {
   // execute recursively
   if (firstChild != null) {
     firstChild.cleanup();
   }
   if (nextSibling != null) {
     nextSibling.cleanup();
   }
 }