1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-08 16:55:38 +02:00

[184095] update docs for SystemWidgetHelpers.sortSystemTypesByLabel()

This commit is contained in:
Martin Oberhuber 2007-04-25 21:24:35 +00:00
parent 1646646eaf
commit 9c486010c1

View file

@ -1137,7 +1137,14 @@ public class SystemWidgetHelpers {
/**
* Sorts the given array of systemTypes in ascending order by system
* type label.
* type label.
*
* Note that this method sorts the array in place, so clients are
* responsible for creating a copy of the array when needed. In the
* future, this may sort using an internationalization enabled
* collate algorithm for translated labels (currently, normal
* String compare is used).
*
* @param systemTypes list of system types to sort
*/
public static void sortSystemTypesByLabel(IRSESystemType[] systemTypes) {