Im getting the method (MethodDeclaration) for each class.
now i want to know if the method return type is abstract or not ?
how can i do that ?
feedback
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
I'm assuming you are using reflection to get a method? Assuming that you're using Java, see getModifiers and check whether the bit is set for Method.Abstract | |||||||||||||
feedback
|