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