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