| 26 | |
| 27 | // NOT needed when using the proxy solution |
| 28 | public static class JavaBeanImpl implements JavaBean { |
| 29 | |
| 30 | private String name; |
| 31 | |
| 32 | @Override |
| 33 | public String getName() { |
| 34 | return name; |
| 35 | } |
| 36 | |
| 37 | @Override |
| 38 | public void setName(String name) { |
| 39 | this.name = name; |
| 40 | } |
| 41 | } |
| 42 | } |
nothing calls this directly
no outgoing calls
no test coverage detected