If there is a note set in this Equipment set, then add it to the contained equipment.
()
| 563 | * If there is a note set in this Equipment set, then add it to the contained equipment. |
| 564 | */ |
| 565 | public void addNoteToItem() |
| 566 | { |
| 567 | final String aNote = getNote(); |
| 568 | |
| 569 | if ((aNote != null) && (!aNote.isEmpty())) |
| 570 | { |
| 571 | getItem().setNote(aNote); |
| 572 | } |
| 573 | } |
| 574 | |
| 575 | /** |
| 576 | * Is this EquipSet part of the Equipment set located at rootId. |
no test coverage detected