MCPcopy Index your code
hub / github.com/Ericsson/proxy / JavaBeanImpl

Class JavaBeanImpl

src/test/java/examples/JavaBeanExample.java:28–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected