Files
openide/java/java-impl/resources/inspectionDescriptions/SuspiciousGetterSetter.html
Leonid Shalupov 40795fe787 IJI-2422: community/java: move resources under resources root
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
2025-02-05 04:43:28 +00:00

24 lines
684 B
HTML

<html>
<body>
Reports getter or setter methods that access a field that is not expected by its name.
For example, when <code>getY()</code> returns the <code>x</code> field. Usually, it might be a copy-paste error.
<p><b>Example:</b></p>
<pre><code>class Point {
private int x;
private int y;
public void setX(int x) { // Warning: setter 'setX()' assigns field 'y'
this.y = x;
}
public int getY() { // Warning: getter 'getY()' returns field 'x'
return x;
}
}
</code></pre>
<!-- tooltip end -->
<p>
Use the checkbox below to report situations when a field in the class has a name that matches a name of a getter or a setter.
<p>
</body>
</html>