Hi,

Is there some solution to find usages getters and setters generated with
Lombok? For example:

@Getter
@Setter
public class Pair {

    private String key;

    private String value;

}

public class Main {

    public static void main(String[] args) {

        Pair pair = new Pair();
        pair.setKey("1");
        pair.setValue("One");

    }

}

Reply via email to