This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 87610

Summary: Template parameters are not propagated to Model for Nested classes
Product: uml Reporter: Alexandr Scherbatiy <sunflower>
Component: Reverse EngineeringAssignee: Trey Spiva <tspiva>
Status: VERIFIED FIXED    
Severity: blocker    
Priority: P1    
Version: 5.x   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:
Attachments: MyTreeGeneric java project
Nested Class snapshot

Description Alexandr Scherbatiy 2006-10-20 10:09:06 UTC
Steps to reproduce:

- Reverse Engineer the attached MyTreeGeneric java project
- Expand 'generic|tree|Tree' element
- Create digram from 'Tree', 'Tree|Node', 'Tree|SimpleStack' elements

  'SimpleStack' nested class is not shown as template interface
  in spite of source code of 'SimpleStack' looks like:   
  --------------------------------------------------------------------
  public class Tree<Element extends Comparable> {
    private class SimpleStack<StackElement>{
    }
  }
  --------------------------------------------------------------------
 
 See attached snapshot.
Comment 1 Alexandr Scherbatiy 2006-10-20 10:10:47 UTC
Created attachment 35405 [details]
MyTreeGeneric java project
Comment 2 Alexandr Scherbatiy 2006-10-20 10:12:13 UTC
Created attachment 35406 [details]
Nested Class snapshot
Comment 3 Trey Spiva 2007-01-23 23:00:40 UTC
We where not recognizing that inner classes could have inner class.
Comment 4 Alexandr Scherbatiy 2007-01-26 10:55:17 UTC
verified