mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 06:21:43 +00:00
21 lines
298 B
Java
21 lines
298 B
Java
import lombok.AllArgsConstructor;
|
|
|
|
@AllArgsConstructor
|
|
public class ConstructorJavadoc {
|
|
/**
|
|
* Some text
|
|
*
|
|
* @param fieldName Hello, World1
|
|
* --- GETTER ---
|
|
* Getter section
|
|
*
|
|
* @return Sky is blue1
|
|
*/
|
|
private int fieldName;
|
|
|
|
/**
|
|
* Sky is blue
|
|
*/
|
|
private int fieldName2;
|
|
}
|