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 166309 - enum class - there should be an option to display it on one fine
Summary: enum class - there should be an option to display it on one fine
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Source (show other bugs)
Version: 6.x
Hardware: All Windows XP
: P3 blocker (vote)
Assignee: Rastislav Komara
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-05-31 20:23 UTC by shche123
Modified: 2009-06-01 10:07 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description shche123 2009-05-31 20:23:03 UTC
get: 

    enum EnumType {

        ONE, TWO, THREE
    };

want: 

    enum EnumType {ONE, TWO, THREE};

or want:

    enum EnumType {
        ONE, TWO, THREE
    }

Thanks