Here you can find the source of getGenericSuperclass(Class> cls)
public static Type getGenericSuperclass(Class<?> cls)
//package com.java2s; import java.lang.reflect.*; public class Main { /**/* www . j a v a2s .c o m*/ * @since 2.7 */ public static Type getGenericSuperclass(Class<?> cls) { return cls.getGenericSuperclass(); } }