mirror of
https://github.com/tiennm99/lombok.git
synced 2026-06-12 04:12:24 +00:00
11 lines
174 B
Java
11 lines
174 B
Java
import lombok.Getter;
|
|
import pkgA.ClassA;
|
|
|
|
public class ClassB {
|
|
@Getter private String world = "world";
|
|
public void test() {
|
|
new ClassA().getHello();
|
|
getWorld();
|
|
}
|
|
}
|