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 110063 - Fail to RE enum with data
Summary: Fail to RE enum with data
Status: VERIFIED FIXED
Alias: None
Product: uml
Classification: Unclassified
Component: Reverse Engineering (show other bugs)
Version: 6.x
Hardware: PC Windows XP
: P2 blocker (vote)
Assignee: Viktor Lapitski
URL:
Keywords: REGRESSION
Depends on:
Blocks:
 
Reported: 2007-07-17 20:07 UTC by Sherry Zhou
Modified: 2007-07-19 23:56 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Sherry Zhou 2007-07-17 20:07:25 UTC
build 070717

When RE the enum  below, there is no any element created in the uml project tree.
There is not any error dialog nor error in  message.log  . 

 public enum Month {
    JANUARY(31),
    FEBRUARY(28),
    MARCH(31),
    APRIL(30),
    MAY(31),
    JUNE(30),
    JULY(31),
    AUGUST(31),
    SEPTEMBER(30),
    OCTOBER(31),
    NOVEMBER(30),
    DECEMBER(31);
    
    private int dayNumber;
    
    private Month(int dayNumber){
        this.dayNumber = dayNumber;
    }
    
    public int getDayNumber(){
        return dayNumber;
    }
    
}
Comment 1 Viktor Lapitski 2007-07-18 03:14:37 UTC
fixed.
Comment 2 Sherry Zhou 2007-07-19 23:56:51 UTC
verified at build 070719