Given these two classes
public class MyClass extends MyAbstractClass<Cow> {
...
}
public abstract class MyAbstractClass<Foo_ extends AbstractFoo> {
...
Key<Foo_> foo;
...
}
If I run this code in an annotation processor, I don't get the result I want.
for (VariableElement fieldElement : ElementFilter.fieldsIn(env.getElementUtils().getAllMembers((TypeElement)entityElement))) {
String fieldType = fieldElement.asType().toString();
}
env is a ProcessingEnvironment. entityElement is an Element. (MyClass)
fieldType is set to Key<Foo_>.
What do I need to call to get fieldType set to Key<MyClass>?
MyAbstractClass? – G_H Mar 8 '11 at 8:45