mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-23 12:25:20 +00:00
12 lines
204 B
Java
12 lines
204 B
Java
package pkg;
|
|
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class B {
|
|
private Interface a = new A();
|
|
private String string = a.getString();
|
|
private int integer = a.getInteger();
|
|
} |