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

Method process

code/src/java/pcgen/core/kit/KitLevelAbility.java:131–140  ·  view source on GitHub ↗
(PlayerCharacter pc, PCClass cl, PersistentTransitionChoice<T> ch)

Source from the content-addressed store, hash-verified

129 }
130
131 private <T> void process(PlayerCharacter pc, PCClass cl, PersistentTransitionChoice<T> ch)
132 {
133 List<T> list = new ArrayList<>();
134 for (String s : choiceList)
135 {
136 list.add(ch.decodeChoice(Globals.getContext(), s));
137 }
138 //use ch
139 ch.act(list, cl, pc);
140 }
141
142 @Override
143 public String getObjectName()

Callers 1

doApplicationMethod · 0.95

Calls 4

getContextMethod · 0.95
addMethod · 0.65
decodeChoiceMethod · 0.65
actMethod · 0.65

Tested by

no test coverage detected