mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 06:21:43 +00:00
29 lines
439 B
Java
29 lines
439 B
Java
import lombok.Builder;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
public class WeirdJavadoc {
|
|
// Comment
|
|
/* Weird comment /** */
|
|
/**
|
|
* This is the real comment
|
|
* @param test Copy this
|
|
*/
|
|
/* Weird comment /** */
|
|
@Builder
|
|
WeirdJavadoc(String test) {
|
|
|
|
}
|
|
|
|
// Comment
|
|
/* Weird comment /** */
|
|
/**
|
|
* This is the real comment
|
|
* @param test Copy this
|
|
*/
|
|
/* Weird comment /** */
|
|
@Getter
|
|
@Setter
|
|
private String test;
|
|
}
|