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 79087

Summary: RE Operation: Lifeline name is incorrectly generated for Enumeration constants
Product: uml Reporter: Alexandr Scherbatiy <sunflower>
Component: Reverse EngineeringAssignee: issues@uml <issues>
Status: NEW ---    
Severity: blocker    
Priority: P3    
Version: 5.x   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:
Attachments: Lifeline for Enumeration constant

Description Alexandr Scherbatiy 2006-06-26 13:46:11 UTC
Steps to reproduce:

- Do Reverse Engineering of 'void test()'  method from
  'Test' class and create a Sequence diagram:
  ---------------------------------------------------------------     
  public class Test {
    enum DAY {
        SUNDAY,
        MONDAY,
        TUESDAY,
        WEDNESDAY,
        THURSDAY,
        FRIDAY,
        SATURDAY
    }
    
    void test(){
        DAY d = DAY.SUNDAY;
    }
  }
  ---------------------------------------------------------------     

  There is ':SUNDAY' Lifeline on the Sequence diagram instead of 'SUNDAY:DAY'.
Comment 1 Alexandr Scherbatiy 2006-06-26 13:46:53 UTC
Created attachment 31377 [details]
Lifeline for Enumeration constant