Total Complexity | 3 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | package es.webbeta.serializer.metadata; |
||
7 | public class MetadataPropertyAccessor { |
||
8 | |||
9 | private String getter; |
||
10 | |||
11 | MetadataPropertyAccessor(String getter) { |
||
12 | this.getter = getter; |
||
13 | } |
||
14 | |||
15 | public Boolean hasGetter() { |
||
16 | return getter != null; |
||
17 | } |
||
18 | |||
19 | public String getGetter() { |
||
20 | return getter; |
||
21 | } |
||
23 | } |