mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
24 lines
684 B
HTML
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> |