You need to use the generic parameters to specify a type which is Comparable. Objects by default are not Comparable.

SimpleSet<String> stringSet = new SimpleSet<String>(); // String implements the...