Exemplo n.º 1
0
 protected void _linkNewChild(SMOutputtable n) {
   SMOutputtable last = _lastChild;
   if (last == null) {
     _lastChild = n;
     _firstChild = n;
   } else {
     last._linkNext(n);
     _lastChild = n;
   }
 }