()
| 222 | } |
| 223 | |
| 224 | public Node getLastSibling() { |
| 225 | Node n = this; |
| 226 | while (n.next != null) { |
| 227 | n = n.next; |
| 228 | } |
| 229 | return n; |
| 230 | } |
| 231 | |
| 232 | public void addChildToFront(Node child) { |
| 233 | child.next = first; |
no outgoing calls
no test coverage detected