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

Method getKeyName

code/src/java/pcgen/cdom/base/CDOMObject.java:785–796  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

783 }
784
785 @Override
786 public String getKeyName()
787 {
788 // FIXME TODO Patched for now to avoid NPEs, but this is wrong
789 String returnKey = this.get(StringKey.KEY_NAME);
790 if (returnKey == null)
791 {
792 returnKey = this.getDisplayName();
793 //returnKey = this.get(StringKey.NAME);
794 }
795 return returnKey;
796 }
797
798 public void setKeyName(String key)
799 {

Callers 5

getHTMLInfoMethod · 0.95
getNamedTempBonusListMethod · 0.95
getBonusFromNameMethod · 0.95
appendSpellLinesMethod · 0.95
validateAssociationsMethod · 0.95

Calls 2

getMethod · 0.95
getDisplayNameMethod · 0.95

Tested by

no test coverage detected