I have an annotated class:
public class CacheMessageHolder<TestMessage> implements MessageHolder<TestMessage> {
protected @MessageHolderType TestMessage message;
@Override
@SendProtoAll (proto ="protoMessageClass", matchType=MatchType.PARTIAL)
public void setMessage( TestMessage msg) {
this.message = msg;
}
}
In my annotation processor I want to get a list of the getter methods on the Object passed into the setMessage method, this information will then be used for code generation.
I extend ElementScanner6 and manage to get a VariableElement that seems to hold the parameter but I do not know where to go from here.
So in this example I want to get all the methods in the TestMessage class at compile time.
Any ideas