|
From: Michael B. <mic...@gm...> - 2008-11-21 11:28:06
|
i committed a "fix" for the following simple parent case
@Provider
public class PersonConverter extends SuperPersonConverter{...}
public class SuperPersonConverter implements StringConverter<Person>{...}
however, the original testcase remains a problem
@Provider
public static class CompanyConverter extends ObjectConverter<Company>{..}
public abstract static class ObjectConverter<T> implements
StringConverter<T>{...}
How can you get the type in this case?
The testcase is SuperStringConverterTest. Uncomment the commented
lines to trigger the problem.
Michael Brackx
|