com.sun.media.jsdt.impl
Class Util

java.lang.Object
  |
  +--com.sun.media.jsdt.impl.Util

public class Util
extends java.lang.Object
implements JSDTDebugFlags, java.io.Serializable

Various JSDT utility methods.

Version:
1.5 - 7th January 1999
Author:
Rich Burridge
See Also:
Serialized Form

Constructor Summary
Util()
           
 
Method Summary
static void sort(java.lang.String[] names)
           sort sort the array of names using a simple bubble sort.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Util

public Util()
Method Detail

sort

public static final void sort(java.lang.String[] names)
sort sort the array of names using a simple bubble sort.
Parameters:
names - the array of Strings to be sorted. Algorithm taken from "Algorithms in C++" by Robert Sedgewick, p101.