Ejemplo n.º 1
0
 public void resize(Coord sz) {
   this.sz = sz;
   for (Widget ch = child; ch != null; ch = ch.next) ch.presize();
   if (parent != null) parent.cresize(this);
 }