Hi,
If I have a property defined, the annotation that I placed on the property will be actually an annotation placed on the backing field. Some frameworks (for example JAXB) goes confused if it finds an annotated field and a getter and it will take as if the same property was declared twice and fail with error. In such cases it is useful to place the annotation on the getter. How can I do this in kotlin?