/* (non-Javadoc)
  * @see de.enough.polish.ui.ContainerView#initContent(de.enough.polish.ui.Container, int, int)
  */
 protected void initContent(
     Item parentContainerItem, int firstLineWidth, int availWidth, int availHeight) {
   super.initContent(parentContainerItem, firstLineWidth, availWidth, availHeight);
   // #debug
   // # System.out.println("initContent of " + this + ": restartAnimation=" + this.restartAnimation
   // + ", focusedItem=" + this.focusedItem + ", items.length=" +
   // this.parentContainer.getItems().length);
   // new RuntimeException().printStackTrace();
   if (this.restartAnimation && this.focusedItem != null) {
     setTargets(
         this.focusedItem.relativeX, this.focusedItem.relativeY, this.parentContainer.getItems());
   }
 }