Hi Linus,
MVW:
Currently, it always gives a few warnings for every function with
parameters, and I do not find any way to suppress these warnings.
So I try not to look at them, and switched off checkstyle warnings,
since they drown in the useless ones...
Linus:
It is unlucky that you are feeling that Eclipse warns too much. I don't
understand from your description, where your warnings come from.
Digging into the problem I found out that CheckStyle _IS_ the problem.
I get warnings for every method like this one:
/**
* Called after the notation default property gets changed.
*
* @see
java.beans.PropertyChangeListener#propertyChange(java.beans.PropertyChangeEvent)
*/
public void propertyChange(PropertyChangeEvent pce) {
....
And, after reading
http://checkstyle.sourceforge.net/config_javadoc.html#JavadocMethod
I found out that I can suppress the warnings by:
/**
* Called after the notation default property gets changed.
*
* [EMAIL PROTECTED]
*/
public void propertyChange(PropertyChangeEvent pce) {
....
...or by commenting out the
<module name="JavadocMethod">
<property name="scope" value="protected"/>
<property name="allowUndeclaredRTE" value="true"/>
</module>
in the checkstyle_argouml.xml file - which is not desired.
I like the [EMAIL PROTECTED] solution for esthetical reasons, but it is quite
some work to go adapt everywhere...
What shall we do?
Regards,
Michiel
--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.7.1/347 - Release Date: 24/05/2006
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]