I have super class as:
class MyClass<T> {
public void setValue(T value){
//insert code
}
public T getValue(){
return null;
}
}
then I have a a specific derivation
class MyClassImp extends MyClass<String> {
@Override
public void setValue(String value){
//insert code
}
@Override
public String getValue(){
return null;
}
}
On reflection on MyClassImpl as:
Class clazz = MyClassImpl.class;
Method[] methods = clazz.getDeclaredMethods();
I get both superclass implementation java.lang.Object getValue(), void setValue(java.lang.Object) and java.lang.String getValue(), void setValue(java.lang.String).
According to the Java documentation of Class.getDeclaredMethods() vis-a-viz
Returns an array of Method objects reflecting all the methods declared by the class or interface represented by this Class object. This includes public, protected, default (package) access, and private methods, but excludes inherited methods. The elements in the array returned are not sorted and are not in any particular order. This method returns an array of length 0 if the class or interface declares no methods, or if this Class object represents a primitive type, an array class, or void. The class initialization method
<clinit>is not included in the returned array. If the class declares multiple public member methods with the same parameter types, they are all included in the returned array.
Why am I getting the super type implementation? Is there something I am missing?
The reason why I need this is that I reflectively invoke setValue on base class implementation, which I have added some special annotation comments and of course additional constraints.