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

Method apply

code/src/java/pcgen/core/kit/KitKit.java:47–54  ·  view source on GitHub ↗

Actually applies the kit to this PC. @param aPC The PlayerCharacter the alignment is applied to

(PlayerCharacter aPC)

Source from the content-addressed store, hash-verified

45 * @param aPC The PlayerCharacter the alignment is applied to
46 */
47 @Override
48 public void apply(PlayerCharacter aPC)
49 {
50 for (Map.Entry<Kit, List<BaseKit>> me : appliedKits.entrySet())
51 {
52 me.getKey().processKit(aPC, me.getValue());
53 }
54 }
55
56 /**
57 * Test applying this kit to the character.

Callers

nothing calls this directly

Calls 4

processKitMethod · 0.80
getKeyMethod · 0.65
getValueMethod · 0.65
entrySetMethod · 0.45

Tested by

no test coverage detected