Hi,
what does this code exactly do?
implements other class to have the same methods, and then compares two objects of x with y and then returns it to back to the other class??
import java.util.*;
public class TableComparator implements Comparator<customerTable>
{
public int compare(customerTable x, customerTable y)
{
return x.compareTo(y);
}
}