| Total Complexity | 4 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | /* |
||
| 29 | public final class ItemSet { |
||
| 30 | private final int id; |
||
| 31 | private final String name; |
||
| 32 | private final List<List<ItemTemplateEffectEntry>> bonus; |
||
| 33 | |||
| 34 | 1 | public ItemSet(int id, String name, List<List<ItemTemplateEffectEntry>> bonus) { |
|
| 35 | 1 | this.id = id; |
|
| 36 | 1 | this.name = name; |
|
| 37 | 1 | this.bonus = bonus; |
|
| 38 | 1 | } |
|
| 39 | |||
| 40 | public int id() { |
||
| 41 | 1 | return id; |
|
| 42 | } |
||
| 43 | |||
| 44 | public String name() { |
||
| 45 | 1 | return name; |
|
| 46 | } |
||
| 47 | |||
| 48 | public List<List<ItemTemplateEffectEntry>> bonus() { |
||
| 49 | 1 | return bonus; |
|
| 50 | } |
||
| 52 |