I must admit that Java is a little messy when working with templates...
As the title explains, i'm trying to use an static member coded on the super class of some generalizated attribute. How can i do this?
For example:
class A {
public static void someAction();
}
class B<T extends A>{ (...) }
¿how do i access the A's someAction()
method in the class B?