Removes all of this node's children.
()
| 1122 | * Removes all of this node's children. |
| 1123 | */ |
| 1124 | public void removeAllChildren() { |
| 1125 | while (getFirstChild() != null) { |
| 1126 | getFirstChild().remove(); |
| 1127 | } |
| 1128 | } |
| 1129 | |
| 1130 | /** |
| 1131 | * <span style="color:red">INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.</span><br> |