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 237207 - sort Wrapped JARs list in Project Properties
Summary: sort Wrapped JARs list in Project Properties
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Project (show other bugs)
Version: 7.3.1
Hardware: All All
: P3 normal (vote)
Assignee: Tomas Zezula
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-10-16 15:02 UTC by dhalbert
Modified: 2013-10-16 15:52 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 dhalbert 2013-10-16 15:02:19 UTC
The Wrapped JARs list in the Project Properties windows is not sorted by jar name. It just lists the jars in the order they appear in the project.xml file.

When there are dozens of jars in the list, it's difficult to find a jar, find near duplicates, etc.

It would be nice to have this list sorted alphabetically by jar name (not by pathname). It could be sorted just in the UI, or perhaps the list in project.xml could be maintained in sorted order.
Comment 1 Tomas Zezula 2013-10-16 15:52:37 UTC
The jar files can be ordered alphabetically in the UI (probably with option to disable it). They cannot be ordered in the project.properties as the order is important. If two or more jar files have a class (resource) with same qualified name (path) the class (resource) from the jar which is the before the others is loaded.

The UI ordering makes sense to me.