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

Method getResolved

code/src/java/pcgen/cdom/base/CDOMObject.java:381–394  ·  view source on GitHub ↗
(FactKey<FT> key)

Source from the content-addressed store, hash-verified

379 }
380
381 public final <FT> FT getResolved(FactKey<FT> key)
382 {
383 if (factChar == null)
384 {
385 return null;
386 }
387 @SuppressWarnings("unchecked")
388 Indirect<FT> indirect = (Indirect<FT>) factChar.get(key);
389 if (indirect == null)
390 {
391 return null;
392 }
393 return indirect.get();
394 }
395
396 public final <FT> FT put(FactKey<FT> key, Indirect<FT> value)
397 {

Callers 15

evaluateMethod · 0.95
getAppliedNameMethod · 0.45
getAppliedNameMethod · 0.45
getTokenMethod · 0.45
getHTMLInfoMethod · 0.45
getSetMethod · 0.45
canCastSpellTypeLevelMethod · 0.45
availableSpellsMethod · 0.45
getAbbrevMethod · 0.45
getSpellTypeMethod · 0.45
getClassTypeMethod · 0.45

Calls 1

getMethod · 0.65

Tested by

no test coverage detected