Bug 60572 - Javadoc-Warnings: Illegal semicolon in see tag not marked
Summary: Javadoc-Warnings: Illegal semicolon in see tag not marked
Status: RESOLVED INVALID
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.0   Edit
Hardware: PC Windows XP
: P3 minor (vote)
Target Milestone: 3.0 M9   Edit
Assignee: Frederic Fusier CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-04-30 10:37 EDT by Martin Aeschlimann CLA
Modified: 2004-05-09 11:49 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Martin Aeschlimann CLA 2004-04-30 10:37:47 EDT
20040430

- Turn on checking of javadoc comments and tags
- In the following code the the Javadoc tool complains about an illegal
semicolon. Our error checking doesn't.

package pack;
public class A {
	/**
	 * Comment
	 * @see pack.A#foo();
	 */
	public void foo() {
		
	}
	/**
	 * Hello
	 */
	protected void xoo() {
	}
}
Comment 1 Frederic Fusier CLA 2004-05-09 11:44:46 EDT
I think here were are better than Javadoc tool. The error given by it is:
warning - Tag @see: reference not found: pack.A#foo();
Our Javadoc parser identifies correctly the reference and put the semi-colon in
following text. In fact there's no error on reference, it's just that text after
is not separated, so, I don't think our behavior is incorrect...