Set's all the BonusObj's to this creator Hopefully this is a temporary import - thpr Oct 9, 2008 @throws CloneNotSupportedException
(Object owner)
| 1106 | * @throws CloneNotSupportedException |
| 1107 | */ |
| 1108 | public void ownBonuses(Object owner) throws CloneNotSupportedException |
| 1109 | { |
| 1110 | List<BonusObj> bonusList = getListFor(ListKey.BONUS); |
| 1111 | if (bonusList != null) |
| 1112 | { |
| 1113 | removeListFor(ListKey.BONUS); |
| 1114 | for (BonusObj orig : bonusList) |
| 1115 | { |
| 1116 | BonusObj bonus = orig.clone(); |
| 1117 | addToListFor(ListKey.BONUS, bonus); |
| 1118 | } |
| 1119 | } |
| 1120 | } |
| 1121 | |
| 1122 | /** |
| 1123 | * Hopefully this is a temporary import - thpr Oct 11, 2008 |
no test coverage detected