mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-08 10:20:58 +00:00
Add support for eclipse feature tests
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package pkg;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class B {
|
||||
private A a = new A();
|
||||
private String string = a.getString();
|
||||
private int integer = a.getInteger();
|
||||
}
|
||||
Reference in New Issue
Block a user