@Override
public Class< ? extends Page> getHomePage() {
return HomePage.class;
}
public Class<HomePage> getHomePage(){
return HomePage.class;
}
The first one has an annotation Override. What does that mean or what does it send to the framework.
Will both the methods return the same class. I mean what does this mean ? extends Page
. I mean the ? Mark.