shishkovilja commented on code in PR #12200:
URL: https://github.com/apache/ignite/pull/12200#discussion_r2225473851


##########
modules/codegen2/README.md:
##########
@@ -11,6 +11,8 @@ The `MessageProcessor` performs the following tasks:
 - **Naming Convention Enforcement**: It verifies that all fields annotated 
with `@Order` have a corresponding pair of accessor methods:
     - A getter named exactly after the field (e.g., `fieldName()`)
     - A setter named after the field, accepting a single argument (e.g., 
`fieldName(Type val)`)
+    - By default, it is assumed that getters and setters are named as the 
annotated fields, e.g. field 'val' should have getters and satters with name 
'val' (according Ignite's to code-style). If you need to override this 
behavior, you can specify their name in the {@link #method} attribute.

Review Comment:
   ```suggestion
       - By default, it is assumed that getters and setters are named as the 
annotated fields, e.g. field 'val' should have getters and setters with name 
'val' (according to Ignite's code-style). If you need to override this 
behavior, you can specify their name in the `Order#method` attribute.
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to