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

Method getListFor

code/src/java/pcgen/cdom/base/CDOMObject.java:545–548  ·  view source on GitHub ↗

Returns a copy of the list of objects stored in this CDOMObject for the given ListKey. No order is guaranteed, and the returned List may contain duplicates. There is no guarantee that duplicate items are sequential items in the returned List. This method is value-semantic in that no changes are ma

(ListKey<T> key)

Source from the content-addressed store, hash-verified

543 * key; null if the given key is not a ListKey in this CDOMObject.
544 */
545 public final <T> List<T> getListFor(ListKey<T> key)
546 {
547 return listChar == null ? null : listChar.getListFor(key);
548 }
549
550 /**
551 * Returns a non-null copy of the list of objects stored in this CDOMObject

Callers 15

getListAsStringMethod · 0.95
ownBonusesMethod · 0.95
hasPrerequisitesMethod · 0.95
isAvailableMethod · 0.95
isActiveMethod · 0.95
dataAddedMethod · 0.95
dataAddedMethod · 0.95
dataRemovedMethod · 0.95
dataAddedMethod · 0.95
dataAddedMethod · 0.95
dataAddedMethod · 0.95
dataAddedMethod · 0.95

Calls 1

getListForMethod · 0.65

Tested by

no test coverage detected