Dear all,
I'm trying to create a ConfigurationTabContribution puglin, but I'm hitting an issue with java Generics that I don't know how to solve.
So in my :
public List getTabs() {
}
I'm trying to add a new ConfigurationTab and ConfigurationTab constructors is expecting : String title, Class<? extends ConfigurationPage>[] pageClasses
I created a class ViewPage which extends ConfigurationPage but however I try to pass it to the ConfigurationTab constructor I have compiler error.
Would you have a sample on how to do that ?