In Java 6 I was able to use:
public static <T, UK extends T, US extends T> T getCountrySpecificComponent(UK uk, US us) {
Country country = CountryContext.getCountry();
if (country == Country.US) {
return us;
} else if (country == Country.UK) {
return uk;
} else {
throw new IllegalStateException("Unhandled country returned: "+country);
}
}
With these repositories:
public interface Repository{
List<User> findAll();
}
public interface RepositoryUS extends Repository{}
public interface RepositoryUK extends Repository{}
When using these:
RepositoryUK uk = ...
RepositoryUS us = ...
This line compiles in in Java6 but fails in Java7 (error cannot find symbol - as the compiler looks for findAll() on class Object)
List<User> users = getCountrySpecificComponent(uk, us).findAll();
This compiles in Java 7
List<User> users = ((Repository)getCountrySpecificComponent(uk, us)).findAll();
I know this is a rather uncommon use case but is there a reason for this change? Or a way to tell the compiler to be a little "smarter"?
Ttype? Could you eliminate that generic parameter and haveUKandUSextendRepository? I think that's the root of the problem - the compiler can't know that everything you pass togetCountrySpecificComponent()is aRepositoryunless you tell it so. – Rob I May 22 '12 at 13:05TbeRepository, when it can just as easily beObjectin the case given? – mellamokb May 22 '12 at 13:09Repositoryobjects, you probably want another base interface. See my answer below. – Rob I May 22 '12 at 13:20