package baf.util; import java.util.*; /** Another hack: To compensate for the fact that Strings * are not yet Comparables, we make another class for sorted * lists of strings. */ public class SortedList { private Vector v = new Vector(); public synchronized void add(Comparable o) { int i; for (i=0; i