How do I programmatically get the field type from a statement inside a method like this :

Foo foo = getSomeFoo();

If it is field, I can know the type of the element.

link|improve this question

76% accept rate
Are you asking how to find out the class of the object returned by getSomeFoo()? Is foo.getClass() what you need? I don't think I understand the question. – Jim Tough Oct 15 '10 at 0:13
feedback

2 Answers

up vote 2 down vote accepted

You need to use Eclipse's AST

ICompilationUnit icu = ...

ASTParser parser = ASTParser.newParser(AST.JLS3);
parser.setResolveBindings(true);
parser.setSource(icu);
CompilationUnit cu = (CompilationUnit) parser.createAST(null);
cu.accept(new ASTVisitor() {
    @Override
    public boolean visit(VariableDeclarationStatement node) {
        System.out.println("node=" + node);
        System.out.println("node.getType()=" + node.getType());
        return true;
    }
});
link|improve this answer
feedback

You can get the class of the foo object by calling foo.getClass().

If you have a class (or object) and want to programmatically get the return type for a particular method on that class, try this:

  • Get the Class object for the class/object
  • Call the getMethod() method and get a Method object back
  • Call the getReturnType() method on the Method object
link|improve this answer
If you need more details on this, search Google for "Java Reflection" – Jim Tough Oct 15 '10 at 0:30
i think he means from eclipse plugin – IAdapter Oct 15 '10 at 10:52
feedback

Your Answer

 
or
required, but never shown

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