MCPcopy
hub / github.com/seaswalker/spring-analysis / UserServiceImpl

Class UserServiceImpl

src/main/java/test/proxy/UserServiceImpl.java:8–21  ·  view source on GitHub ↗

UserService实现. @author skywalker

Source from the content-addressed store, hash-verified

6 * @author skywalker
7 */
8public class UserServiceImpl implements UserService {
9
10 @Override
11 public void printName() {
12 System.out.println("Name is XXX");
13 printAge();
14 }
15
16 @Override
17 public void printAge() {
18 System.out.println("Age: " + 18);
19 }
20
21}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected