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

Summary: sort Wrapped JARs list in Project Properties
Product: java Reporter: dhalbert <dhalbert>
Component: ProjectAssignee: Tomas Zezula <tzezula>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 7.3.1   
Hardware: All   
OS: All   
Issue Type: ENHANCEMENT Exception Reporter:

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.