(final String aKey)
| 1748 | } |
| 1749 | |
| 1750 | private AbilityCategory silentlyGetAbilityCategory(final String aKey) |
| 1751 | { |
| 1752 | AbilityCategory cat = |
| 1753 | getContext().getReferenceContext().silentlyGetConstructedCDOMObject(AbilityCategory.class, aKey); |
| 1754 | if (cat != null) |
| 1755 | { |
| 1756 | return cat; |
| 1757 | } |
| 1758 | if (AbilityCategory.LANGBONUS.getKeyName().equals(aKey)) |
| 1759 | { |
| 1760 | return AbilityCategory.LANGBONUS; |
| 1761 | } |
| 1762 | return null; |
| 1763 | } |
| 1764 | |
| 1765 | /** |
| 1766 | * Returns a <tt>Collection</tt> of <tt>AbilityCategory</tt> objects defined |
no test coverage detected