// get an ICompilationUnit by some means
// you might drill down from an IJavaProject, for instance
ICompilationUnit iunit = ...
// create a new parser for the latest Java Language Spec
ASTParser parser = ASTParser.newParser(AST.JLS3);
// tell the parser you are going to pass it some code where the type level is a source file
// you might also just want to parse a block, or a method ("class body declaration"), etc
parser.setKind(ASTParser.K_COMPILATION_UNIT);
// set the source to be parsed to the ICompilationUnit
// we could also use a character array
parser.setSource(iunit);
// parse it.
// the output will be a CompilationUnit (also an ASTNode)
// the null is because we're not using a progress monitor
CompilationUnit unit = (CompilationUnit) parser.createAST(null);
Не смущайтесь из-за различия между ICompilationUnit и CompilationUnit, которое, по-видимому, является просто результатом творческого именования с их стороны. CompilationUnit - это тип ASTNode. ICompilationUnit в этом контексте напоминает дескриптор файла. Для получения дополнительной информации о различии см. Здесь: http://wiki.eclipse.org/FAQ_How_do_I_manipulate_Java_code%3F