MCPcopy Create free account
hub / github.com/PCGen/pcgen / getChildren

Method getChildren

code/src/java/pcgen/io/PCGVer2Parser.java:5350–5358  ·  view source on GitHub ↗

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

()

Source from the content-addressed store, hash-verified

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 {

Callers 7

parseSkillLineMethod · 0.95
parseTemplateLineMethod · 0.95
parseEquipmentLineMethod · 0.95
toStringMethod · 0.95
tokenizeLineMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected