ARTICLE AD BOX
I'm learning Java and I use IntelliJ as IDE. In the settings, I added the Lombok plugin.
and in Build, Execution, Deployment | Compiler | Annotation Processors
Enable annotation processing box is checked Obtain processors from project classpath option is selectedI wrote my first test
import lombok.*; @NoArgsConstructor @AllArgsConstructor @Getter @Setter @EqualsAndHashCode @ToString public class Author { private int id; private String name; private String surname; private String email; private final String birthPlace = "Somewhere"; /** * This is the constructor of the Author class * * @param id This is the author identifier * @param name This is the first name of the author * @param surname This is the last name of the author */ public Author( @NonNull int id, @NonNull String name, String surname ) { this.id = id; this.name = name; this.surname = surname; } }When I generate the javadoc, all the getand set are not visible in the documentation. How is it possible to generate it using IntelliJ?


