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 - Template parameters are not propagated to Model for Nested classes
Summary: Template parameters are not propagated to Model for Nested classes
Status: VERIFIED FIXED
Alias: None
Product: uml
Classification: Unclassified
Component: Reverse Engineering (show other bugs)
Version: 5.x
Hardware: All All
: P1 blocker (vote)
Assignee: Trey Spiva
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-10-20 10:09 UTC by Alexandr Scherbatiy
Modified: 2007-10-19 21:06 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
MyTreeGeneric java project (9.64 KB, application/octet-stream)
2006-10-20 10:10 UTC, Alexandr Scherbatiy
Details
Nested Class snapshot (147.72 KB, image/png)
2006-10-20 10:12 UTC, Alexandr Scherbatiy
Details

Note You need to log in before you can comment on or make changes to this bug.
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