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 191473 - When displaying Java Packages in tree view merge org dot and com dot
Summary: When displaying Java Packages in tree view merge org dot and com dot
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Navigation (show other bugs)
Version: 6.x
Hardware: All All
: P3 normal (vote)
Assignee: Tomas Zezula
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-10-29 18:54 UTC by baffyofdaffy
Modified: 2010-10-29 18:54 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 baffyofdaffy 2010-10-29 18:54:55 UTC
In the projects pane in the Source Packages the packes are normally like this

org.me.myapp
  Class1
  Class2
org.me.myapp.excaptions
  Exception1
  Exception2

When you change it to tree view (right click background->view java packages as) you get

org
  me
    myapp
      exceptions
        Exception1
        Exception2
      Class1
      Class2

I would prefer this (best of both worlds)

org.me.myapp
  exceptions
    Exception1
    Exception2
  Class1
  Class2

Also when having multiple packages starting with the same folder (com.sun and com.google) Those two should be separated (where by default using the above rule there would be google and sun both under com)