Retrieves the superclass of the specified class.
public static Class getSuperclass( Class type )
type
The class to get the superclass of.
Returns the superclass of the specified type.
This method correctly returns the superclass of an array class type. For example, the superclass of Control[].class will be returned as Component[].class. The standard Java reflection APIs always return Object.class as the superclass of any array type.