You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@netbeans.apache.org by Rafael Santini <ra...@santini.eti.br> on 2020/07/11 23:22:37 UTC

Lombok - find usages

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");

    }

}