mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 16:50:55 +07:00
12 lines
306 B
Java
12 lines
306 B
Java
abstract class Test {
|
|
|
|
interface InputFormat<K, V> {
|
|
}
|
|
|
|
@SuppressWarnings("unchecked")
|
|
private static Class<? extends InputFormat<?, ?>> getInputFormatClass(final Class<? extends InputFormat> aClass)
|
|
throws ClassNotFoundException {
|
|
return (Class<? extends InputFormat<?, ?>>) aClass;
|
|
}
|
|
}
|