Open indikeev opened 4 years ago
I want to add quick fixes for loggers, getters, setter, constructors
@Log
public class LogExample { private static final Logger log = getLogger(LogExample.class.getName()); }
replace to
@Log public class LogExample { }
And same for other loggers annotations
Replace getters with @Getter annotation and setters with @Setter annotation
@Getter
@Setter
public class User { private String name; public String getName() { return name; } }
public class User { @Getter private String name; }
@NoArgsConstructor
@RequiredArgsConstructor
@AllArgsConstructor
I think this features can help to migrate from vanilla java to lombok and help new people to learn lombok
What do you think about this features? If you dont mind i can start to develop with loggers quick fixes
Hello @indikeev , any contributions are welcome! Feel free to make a PR for it.
Short description
I want to add quick fixes for loggers, getters, setter, constructors
Expected behavior
@Log
annotations. For examplereplace to
And same for other loggers annotations
Replace getters with
@Getter
annotation and setters with@Setter
annotationreplace to
@NoArgsConstructor
,@RequiredArgsConstructor
,@AllArgsConstructor
Why is it useful
I think this features can help to migrate from vanilla java to lombok and help new people to learn lombok
What do you think about this features? If you dont mind i can start to develop with loggers quick fixes