Commits
md_5 authored 7d83cba0f25
25 25 | /** |
26 26 | * Set the base value of this instance. |
27 27 | * |
28 28 | * @param value new base value |
29 29 | */ |
30 30 | void setBaseValue(double value); |
31 31 | |
32 32 | /** |
33 33 | * Get all modifiers present on this instance. |
34 34 | * |
35 - | * @return |
35 + | * @return a copied collection of all modifiers |
36 36 | */ |
37 37 | Collection<AttributeModifier> getModifiers(); |
38 38 | |
39 39 | /** |
40 40 | * Add a modifier to this instance. |
41 41 | * |
42 42 | * @param modifier to add |
43 43 | */ |
44 44 | void addModifier(AttributeModifier modifier); |
45 45 | |