Bug 200817 - [misc] Javadoc view and hover: @Documented annotation do not appear
Summary: [misc] Javadoc view and hover: @Documented annotation do not appear
Status: RESOLVED DUPLICATE of bug 236850
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Text (show other bugs)
Version: 3.3   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: JDT-Text-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-08-22 08:52 EDT by NoName CLA
Modified: 2008-06-16 11:02 EDT (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description NoName CLA 2007-08-22 08:52:02 EDT
Build ID: I20070625-1500

Steps To Reproduce:
In the javadoc view, the annotation do not appear (on field, methods, or method parameters).

At least, annotations marked with @Documented should appear.


More information:
Small test case:
===============
import java.lang.annotation.Documented;

public class TestAnnotationInJavadoc {
	@Documented
	public @interface Ann {
	}

	@Ann String field;
	
	@Ann Object foo(@Ann int i) {
		return null;
	}
}
=====================
Comment 1 Dani Megert CLA 2008-06-16 11:02:25 EDT

*** This bug has been marked as a duplicate of bug 236850 ***