MCPcopy Create free account
hub / github.com/JavaCourse00/JavaCourseCodes / A

Class A

04fx/java8/src/main/java/io/kimmking/java8/A.java:6–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4import lombok.extern.slf4j.Slf4j;
5
6@ToString
7@NoArgsConstructor
8@AllArgsConstructor
9@Slf4j
10@Builder
11@Getter
12@Setter
13public class A {
14
15 private int age;
16
17 private String name;
18
19// public void test(){
20// log.info("this message is logged by lombok");
21// System.out.println(this.toString());
22// }
23
24}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected