i am creating java source files using eclipse JDT & AST. There are cases that generated source files are implementing or extending something.

is it possible to add method stubs automatically before actually creating them? like invoking this "Add unimplemented methods" quick fix via JDT.

i know i can add them myself via those API's, but i want to tweak.

link|improve this question

You can look at the implementation of the quick fix and do the same thing in your code. – Deepak Azad Jul 9 '11 at 6:57
no free launch huh :) i dug myself. thank you i should get used to check eclipse source. – mert inan Jul 9 '11 at 21:15
feedback

1 Answer

i found solution after a couple of hours; code is roughly like this. there are also many good code manipulation classes in this package "org.eclipse.jdt.internal.corext.codemanipulation.*"

ICompilationUnit createCompilationUnit = getItSomeHow();
RefactoringASTParser parser1 = new RefactoringASTParser(AST.JLS3);
CompilationUnit unit = parser1.parse(createCompilationUnit, true);
AbstractTypeDeclaration declaration = (AbstractTypeDeclaration) ASTNodes.getParent(
        NodeFinder.perform(unit, createCompilationUnit.getTypes()[0].getNameRange()),
        AbstractTypeDeclaration.class);
ITypeBinding binding = declaration.resolveBinding();
IMethodBinding[] overridableMethods = StubUtility2.getOverridableMethods(unit.getAST(), binding, false);
AddUnimplementedMethodsOperation op = new AddUnimplementedMethodsOperation(unit, binding,
        null/* overridableMethods */, -1, true, true, true);    
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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