mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-06 02:18:47 +00:00
Add support for eclipse feature tests
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package pkg;
|
||||
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
import lombok.ToString;
|
||||
|
||||
@EqualsAndHashCode
|
||||
@Getter
|
||||
@Setter
|
||||
@ToString
|
||||
public class A {
|
||||
private String string;
|
||||
private int integer;
|
||||
}
|
||||
Reference in New Issue
Block a user