Details
- 
        Type:
 Sub-task
            
         - 
        Status:
 Resolved
            
                     - 
            Priority:
 Major
                
             - 
            Resolution: Fixed
 - 
            Affects Version/s: None
 - 
            Fix Version/s: 1.11
 - 
            Component/s: None
 - 
            Labels:None
 
- 
                        Number of attachments :
 
Description
/** * Here the <T> is the problem */ public void testGenericConstructor() { JavaDocBuilder builder = new JavaDocBuilder(); String source = "public class MXBeanSupport {\n" + " public <T> MXBeanSupport(T resource, Class<T> mxbeanInterface)\n" + " throws NotCompliantMBeanException {\n" + " } \n" + "}"; builder.addSource(new StringReader(source)); }
Activity
| Field | Original Value | New Value | 
|---|---|---|
| Status | Open [ 1 ] | Resolved [ 5 ] | 
| Assignee | Robert Scholte [ rfscholte ] | |
| Resolution | Fixed [ 1 ] | |
| Fix Version/s | 1.11 [ 16104 ] | 
This might be a tough one, since I can't find a useful entry about this syntax mechanism in the java-specs ( http://java.sun.com/docs/books/jls/third_edition/html/j3TOC.html ).
The parsing part won't be too hard, but for building the JavaClass-model I need to know how to handle this stuff.