Changed Methods
|
Class<?> getClasses ()
|
Change in return type from Class[] to Class<?> .
|
|
Constructor<T> getConstructor (Class<?> )
|
Change in signature from void to Class<?> .
|
|
Constructor<?> getConstructors ()
|
Change in return type from Constructor[] to Constructor<?> .
|
|
Class<?> getDeclaredClasses ()
|
Change in return type from Class[] to Class<?> .
|
|
Constructor<T> getDeclaredConstructor (Class<?> )
|
Change in signature from void to Class<?> .
|
|
Constructor<?> getDeclaredConstructors ()
|
Change in return type from Constructor[] to Constructor<?> .
|
|
Method getDeclaredMethod (String, Class<?>)
|
Change in signature from (String, ) to (String, Class<?> ).
|
|
Class<?> getInterfaces ()
|
Change in return type from Class[] to Class<?> .
|
|
Method getMethod (String, Class<?>)
|
Change in signature from (String, ) to (String, Class<?> ).
|
|