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 - RE Operation: Lifeline name is incorrectly generated for Enumeration constants
Summary: RE Operation: Lifeline name is incorrectly generated for Enumeration constants
Status: NEW
Alias: None
Product: uml
Classification: Unclassified
Component: Reverse Engineering (show other bugs)
Version: 5.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@uml
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-06-26 13:46 UTC by Alexandr Scherbatiy
Modified: 2009-05-25 21:06 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
Lifeline for Enumeration constant (54.67 KB, image/png)
2006-06-26 13:46 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-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