Gets the baseItemName attribute of the Equipment object @return The baseItemName value
()
| 607 | * @return The baseItemName value |
| 608 | */ |
| 609 | public String getBaseItemName() |
| 610 | { |
| 611 | CDOMSingleRef<Equipment> baseItem = get(ObjectKey.BASE_ITEM); |
| 612 | if (baseItem == null) |
| 613 | { |
| 614 | return getKeyName(); |
| 615 | } |
| 616 | return baseItem.get().getDisplayName(); |
| 617 | } |
| 618 | |
| 619 | /** |
| 620 | * Gets the keyName attribute of the base item of this Equipment object. |
no test coverage detected