{@inheritDoc}
(final String textContent)
| 569 | * {@inheritDoc} |
| 570 | */ |
| 571 | @Override |
| 572 | public void setTextContent(final String textContent) { |
| 573 | removeAllChildren(); |
| 574 | if (textContent != null && !textContent.isEmpty()) { |
| 575 | appendChild(new DomText(getPage(), textContent)); |
| 576 | } |
| 577 | } |
| 578 | |
| 579 | /** |
| 580 | * {@inheritDoc} |
no test coverage detected