<div dir="auto">Corrected Brian's email address.</div><br><div class="gmail_quote gmail_quote_container"><div dir="ltr" class="gmail_attr">On Wed, 14 Jan, 2026, 8:55 am Ganapathi Vara Prasad, <<a href="mailto:ganapathibasamsetti@gmail.com">ganapathibasamsetti@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="auto">Hello Brian,<div dir="auto"><br></div><div dir="auto">Thank you for thinking on this feature. I want to better understand the thought process behind marking all fields that are part of the component state instead of only the derived fields. Something like this:</div><div dir="auto"><br></div><div dir="auto">```</div><pre>class Point(int x, int y) {
private final int x;
private final int y;
private final derived double norm;
Point {
norm = Math.hypot(x, y);
}
public double norm() { return norm; }
// derived implementation of x and y accessors
// derived implementation of equals, hashCode, toString
}
```</pre></div>
</blockquote></div>