()
| 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 | { |
no test coverage detected