Suppose that I have these classes:
class A{
void f();
}
class B extends A{
void g();
}
what will I get when I do:
Class.forename("B").getMethods();
will I get the methods f and g ????
if yes, so how to get just the methods of the current class and not it's father class (In this example the method g() ) ????
thanks forehead!