Closed lazarev-pv closed 7 months ago
YOJ ignores transient
fields and transient
Record
components. This annotation processor should do so, too.
note: I'm agree with @nvamelichev that it could be better with javapoet
YOJ ignores
transient
fields andtransient
Record
components. This annotation processor should do so, too.
Fixed for classes, but if I understand correctly records cannot have modifiers. Btw, I think we need to add the support of @Transient
annotation instead of the modifier some day
note: I'm agree with @nvamelichev that it could be better with javapoet
yep. I'll migrate but I propose to do it in another PR
I hereby agree to the terms of the CLA available at: https://yandex.ru/legal/cla/?lang=en
The PR contains implementation of what was suggested in the issue 52. There are some limitations described in
FieldGeneratorAnnotationProcessor
's java-docs. Right now it supports only Java classes and records. Support of Kt data-classes could be added if we are ok with the current approach