| Summary: | Javadoc validation in interface | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | leokom leokom <lrozenblyum> |
| Component: | Core | Assignee: | JDT-Core-Inbox <jdt-core-inbox> |
| Status: | CLOSED WONTFIX | QA Contact: | Jay Arthanareeswaran <jarthana> |
| Severity: | normal | ||
| Priority: | P3 | CC: | jarthana, lrozenblyum, shankhba |
| Version: | 4.4.1 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows 7 | ||
| Whiteboard: | stalebug | ||
Shankha, please take a look. This bug hasn't had any activity in quite some time. Maybe the problem got resolved, was a duplicate of something else, or became less pressing for some reason - or maybe it's still relevant but just hasn't been looked at yet. If you have further information on the current state of the bug, please add it. The information can be, for example, that the problem still occurs, that you still want the feature, that more information is needed, or that the bug is (for whatever reason) no longer relevant. -- The automated Eclipse Genie. |
In interface like public interface PublicInterface { /** * * @param paramAbsent */ void doSmth( String param ); } when Eclipse Javadoc validation is enabled (to validate for parameters), the validation doesn't report paramAbsent as a problem (if we add public keyword to the method (public void doSmth...) - the paramAbsent IS reported as a problem). Interface methods without 'public' keyword are anyway public and should be treated accordingly.