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 ?

link|improve this question

1  
Method return type ? You mean if the method is declared as being abstract ? – Cicada May 26 '11 at 9:46
Why do you care? – EJP May 26 '11 at 10:19
feedback

closed as not a real question by nbt, Jigar Joshi, duffymo, EJP, Cody Gray May 26 '11 at 10:26

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.

1 Answer

up vote 3 down vote accepted

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

link|improve this answer
thanks but im getting com.sun.mirror.declaration.Modifier as return type..is there anyway you can find that is abstract or not ? – Makky May 26 '11 at 9:52
Sure, just check if it is com.sun.mirror.declaration.Modifier.ABSTRACT. Do you really want to be using that package and not just plain old reflection? – Jeff Foster May 26 '11 at 9:54
But it always return "abstract" string even though the modifer is not ?? – Makky May 26 '11 at 10:02
1  
For getModifiers that returns a collection of modifier objects. You need to loop through those and check whether any of them == Modifier.ABSTRACT? Why are you using this API by the way? I think java.lang.reflect is easier to work with? – Jeff Foster May 26 '11 at 10:06
Its a generation tool using APT process which actually returns the methods of packages com.sun.mirro.etc – Makky May 26 '11 at 10:20
show 4 more comments
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.