top / index / prev / next / target / source

2011-10-14 diary: EclipseのASTParserを試す

いがぴょんの日記 日記形式でつづる いがぴょんコラム ウェブページです。

EclipseのASTParserを試す

http://www.ibm.com/devel...ary/os-ast/

関連する日記

Eclipse JDT Core Component

org.eclipse.jdt.core.compiler

Eclipse: Java Code Formatter

http://help.eclipse.org/...options.htm

実際のコード?

ASTParser parser = ASTParser.newParser(AST.JLS2); parser.setKind(ASTParser.K_COMPILATION_UNIT); parser.setSource(sourceString.toCharArray()); CompilationUnit node = (CompilationUnit) parser.createAST(null);

p6実際のコード2 org.eclipse.jdt.internal.compiler.Compiler

Compiler compiler = new Compiler(new NameEnvironmentImpl(unit), DefaultErrorHandlingPolicies.proceedWithAllProblems(), settings,requestor,new Default\ ProblemFactory(Locale.getDefault())); compiler.compile(new ICompilationUnit[] { unit });

さらにメモ

http://www.masatom.in/pu...5ASTParser/

p7もっとメモ Eclipse JDT でバッチ・コンパイル http://www.eclipse.org/f...p/m/657704/

ASTParser の JavaDoc http://help.eclipse.org/...Parser.html

Last modified: $Date: 2018-04-18 $


この日記について