{@inheritDoc}
()
| 439 | * {@inheritDoc} |
| 440 | */ |
| 441 | @Override |
| 442 | public boolean isValid() { |
| 443 | for (final HtmlElement element : getFormElements()) { |
| 444 | if (!element.isValid()) { |
| 445 | return false; |
| 446 | } |
| 447 | } |
| 448 | return super.isValid(); |
| 449 | } |
| 450 | |
| 451 | /** |
| 452 | * Returns a collection of elements that represent all the "submittable" elements in this form, |