Total Complexity | 3 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | /* |
||
8 | public class Album implements AlbumInterface { |
||
9 | private final String name; |
||
10 | private final String author; |
||
11 | |||
12 | public Album(String author, String name) { |
||
13 | this.name = name; |
||
14 | this.author = author; |
||
15 | } |
||
16 | |||
17 | @Override |
||
18 | public String getName() { |
||
19 | return this.name; |
||
20 | } |
||
21 | |||
22 | @Override |
||
23 | public String getAuthor() { |
||
24 | return this.author; |
||
25 | } |
||
27 |