1 2 3 4 5 6 7 8 9
public class ConcreteImplementingClass implements GenericInterface<Double> { // make sure this method starts on line 5... public int asInt(Double d) { return d.intValue(); } }