mirror of
https://github.com/corda/corda.git
synced 2025-01-09 22:42:40 +00:00
6 lines
109 B
Java
6 lines
109 B
Java
|
package java.lang.reflect;
|
||
|
|
||
|
public interface GenericDeclaration {
|
||
|
TypeVariable<?>[] getTypeParameters();
|
||
|
}
|