{@inheritDoc}
()
| 266 | * {@inheritDoc} |
| 267 | */ |
| 268 | @Override |
| 269 | public DomNode getLastChild() { |
| 270 | if (firstChild_ != null) { |
| 271 | // last child is stored as the previous sibling of first child |
| 272 | return firstChild_.previousSibling_; |
| 273 | } |
| 274 | return null; |
| 275 | } |
| 276 | |
| 277 | /** |
| 278 | * {@inheritDoc} |
no outgoing calls