Gets the keyName attribute of the base item of this Equipment object. @return The base item's keyName value
()
| 622 | * @return The base item's keyName value |
| 623 | */ |
| 624 | public String getBaseItemKeyName() |
| 625 | { |
| 626 | CDOMSingleRef<Equipment> baseItem = get(ObjectKey.BASE_ITEM); |
| 627 | if (baseItem == null) |
| 628 | { |
| 629 | return getKeyName(); |
| 630 | } |
| 631 | return baseItem.get().getKeyName(); |
| 632 | } |
| 633 | |
| 634 | /** |
| 635 | * Gets the cost attribute of the Equipment object |
no test coverage detected