/**
   * {@inheritDoc} <br>
   * Also, {@link #onConfigure(Component)} will call {@link
   * IJQueryWidget#onConfigure(JQueryBehavior)} (if the component IS-A {@link IJQueryWidget})<br>
   * If a property is set in {@link #onConfigure(Component)} and is needed in {@link
   * IJQueryWidget#onConfigure(JQueryBehavior)}, {@code super.onConfigure(component)} should be the
   * last statement.
   */
  @Override
  public void onConfigure(Component component) {
    super.onConfigure(component);

    if (component instanceof IJQueryWidget) {
      ((IJQueryWidget) component).onConfigure(this);
    }
  }