> Sorry! I should have added something very important: when I added the
> 'executable' and 'source' parameters to the javadoc task, which I'd thought
[quoted text clipped - 3 lines]
>
> Obviously, that's an improvement but how do I get rid of the warning too?
First of all, you should NOT put @Override in a JavaDoc comment. Sounds
like that's what you're doing. @Override is an annotation, not a
JavaDoc tag. So move it back out of the JavaDoc comment, and then deal
with whatever problems that causes.
I don't know who initially told you to put @Override in the comment.
Whoever it was, kick them in the shins. They've confused you.

Signature
www.designacourse.com
The Easiest Way To Train Anyone... Anywhere.
Chris Smith - Lead Software Developer/Technical Trainer
MindIQ Corporation
Rhino - 16 Dec 2005 20:47 GMT
>> Sorry! I should have added something very important: when I added the
>> 'executable' and 'source' parameters to the javadoc task, which I'd
[quoted text clipped - 13 lines]
> I don't know who initially told you to put @Override in the comment.
> Whoever it was, kick them in the shins. They've confused you.
I read it in one of the documents that comes with the API or that is linked
from there; I don't recall which one offhand. I could have sworn that they
@Override in either place would work but that the one outside of the comment
was better but maybe I just misread that. In any case, removing the
@Override from the Javadoc comment got rid of the Javadoc warning, as I
wanted, and the surviving @Override annotation is preventing the compiler
warning so I've gotten exactly what I wanted.
Thank you!
Rhino
Chris Smith - 17 Dec 2005 02:55 GMT
> I read it in one of the documents that comes with the API or that is linked
> from there; I don't recall which one offhand. I could have sworn that they
> @Override in either place would work but that the one outside of the comment
> was better but maybe I just misread that.
Hmm. Maybe you were reading about @Deprecated instead. In that case,
there IS an @deprecated JavaDoc tag, and you should use both that and
the annotation. There is no JavaDoc tag for overriding, though.

Signature
www.designacourse.com
The Easiest Way To Train Anyone... Anywhere.
Chris Smith - Lead Software Developer/Technical Trainer
MindIQ Corporation