How to specify the types on interfaces like ```pub...
# announcements
d
How to specify the types on interfaces like
Copy code
public interface OneParamLambda<R, P> extends NParamLambda {
    R execute(P var1) throws Exception;
}
with lambda expressions?