Example #1
0
  /**
   * Returns <code>true</code> if the box and the time input fields don't have any errors.
   *
   * <p>
   *
   * @return <code>true</code> if the box and the time input fields don't have any errors
   */
  public boolean hasErrors() {

    if (m_box.hasError() || m_time.hasError()) {
      return true;
    }
    return false;
  }