renamed all modules
This commit is contained in:
16
testdata/src/main/java/reflection/generics/GenericInterface002.java
vendored
Normal file
16
testdata/src/main/java/reflection/generics/GenericInterface002.java
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user