We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad4af63 commit 0232848Copy full SHA for 0232848
api/src/main/java/com/interguess/autoimpl/api/annotations/AutoField.java
@@ -33,6 +33,9 @@
33
* Annotation to mark a method that's implementation should reference to a specific field.
34
* E.g. if you have a getter and a setter you set their field name with this annotation to the same value,
35
* auto-impl will generate getter and setter implementations for their common field.
36
+ *
37
+ * @implNote This annotation as it does not automatically create a field, it just links methods to a field name so other
38
+ * code generators can use the same field name for multiple methods.
39
*/
40
@Target({ElementType.METHOD})
41
public @interface AutoField {
0 commit comments