3 <font face=
"verdana" size=
"-1">Reports assignments and function calls where the name of the variable to which
4 a value is assigned or the function parameter does not seem to match the name of the value assigned to it.
5 For example:
<br><b><font color=
"#000080">int x =
0;
<br>int y = x;
</font></b><br>
7 <br><b><font color=
"#000080">int x =
0, y =
0;
<br>Rectangle rc = new Rectangle(y, x,
20,
20);
</font></b><br>
8 <p>The configuration pane allows to specify the names which should not be used together: the error is reported
9 if the parameter name or assignment target name contains words from one group and the name of the assigned or passed
10 variable contains words from a different group.
</p>