| Summary: | Unable to get javadoc comments for jdk1.3 version in eclipse | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | SANJEEVKUMAR SOMASUNDARAM <sangansom> |
| Component: | UI | Assignee: | JDT-UI-Inbox <jdt-ui-inbox> |
| Status: | CLOSED INVALID | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | daniel_megert, prakash, sangansom |
| Version: | 3.7 | Keywords: | needinfo |
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
|
Description
SANJEEVKUMAR SOMASUNDARAM
>3.try recreating it
What do you mean by that? Please provide detailed steps.
I am unable to add mising @override annotations in jdk1.3 in eclipse Version: Helios Service Release 2.How to add such annotations in this eclipse.
Also,whenver I try to add javadoc ,I am getting like the following for the below method:
/*
* (non-Javadoc)
* @see org.xml.sax.helpers.DefaultHandler#startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes)
*/
public void startElement(String namespaceURI, String lName, String qName, Attributes attributes) throws SAXException
{
....
}
why I am getting non-javadoc statements?Can u please clarify me on this?
(In reply to comment #2) > I am unable to add mising @override annotations in jdk1.3 in eclipse Version: > Helios Service Release 2.How to add such annotations in this eclipse. You need to get more familiar with Java itself. Annotations are only supported in 1.5 or higher. > Also,whenver I try to add javadoc ,I am getting like the following for the > below method: > > /* > * (non-Javadoc) > * @see org.xml.sax.helpers.DefaultHandler#startElement(java.lang.String, > java.lang.String, java.lang.String, org.xml.sax.Attributes) > */ > public void startElement(String namespaceURI, String lName, String qName, > Attributes attributes) throws SAXException > { > .... > } > why I am getting non-javadoc statements?Can u please clarify me on this? Because normally you don't need to add real Javadoc to overridden methods. You can change this on the Java > Code Style > Code Templates preference page. Thanks Dani. (In reply to comment #4) > Thanks Dani. np. |