Files
spring-loaded/testdata/src/main/java/reflection/generics/GenericInterface002.java
2014-01-15 11:36:24 -08:00

17 lines
324 B
Java

package reflection.generics;
import java.util.Iterator;
public interface GenericInterface002<K> {
public Iterator<K> iterator();
public void processThem(String... strings);
<E extends RuntimeException> void genericThrow() throws E;
void checkMe() throws SecurityException, NoSuchFieldException;
}