Returns all the children of this element. Note : This has a side effect of initializing the children list for the element. @return A List of children
()
| 5348 | * @return A {@code List} of children |
| 5349 | */ |
| 5350 | public List<PCGElement> getChildren() |
| 5351 | { |
| 5352 | if (children == null) |
| 5353 | { |
| 5354 | this.children = new ArrayList<>(0); |
| 5355 | } |
| 5356 | |
| 5357 | return children; |
| 5358 | } |
| 5359 | |
| 5360 | private String getName() |
| 5361 | { |
no outgoing calls
no test coverage detected