|
From: Michael B. <mic...@gm...> - 2008-11-21 14:01:10
|
>> 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?
>>
>
>
> @Provider
> public static class CompanyConverter extends ObjectConverter<Company>
> implements StringConverter<Company> {}
what i was trying to ask was how that could be implemented in java.
how to get the actual type of T in this case?
Michael Brackx
|