If I have the following interface and I want to implement it
public interface A<E extends Comparable<E>>{
//code
}
What is the correct syntax for the implementing class declaration? I get an error when I do this
public class B<E extends Comparable<E>> implements A<E extends Comparable<E>>{}
Should it just read implements A<E> or just implements A?