/*
   * (non-Javadoc)
   *
   * @see org.jdesktop.swingx.plaf.basic.BasicErrorPaneUI#reinit()
   */
  @Override
  protected void reinit() {
    super.reinit();

    if (this.iconLabel.getIcon() != null) {
      this.iconGlowTracker.play(3);
    }
  }
  /*
   * (non-Javadoc)
   *
   * @see org.jdesktop.swingx.plaf.basic.BasicErrorPaneUI#installComponents()
   */
  @Override
  protected void installComponents() {
    super.installComponents();

    this.errorMessage.setBorder(null);
    this.errorScrollPane.setOpaque(false);
    this.errorScrollPane.getViewport().setOpaque(false);

    this.iconGlowTracker = new IconGlowTracker(this.iconLabel);
  }