快速业务通道

探索Eclipse的ASTParser - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-17
ect myProject; IProgressMonitor myProgressMonitor; myProject.build(IncrementalProjectBuilder.INCREMENTAL_BUILD, myProgressMonitor);

对此我不再赘述,因为 Eclipse 帮助中已介绍得很清楚。JDT 还提供了另一种方法, 这种方法更适合于我们的目的,即借助于 org.eclipse.jdt.internal.compiler.Compiler 类。这种方法实际上很简单:先创建一个编译器对象,然后对它调用 compile() 方法。

清单 10. 编译一个编译单元

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

首先说明构造函数的参数,其中包括:

org.eclipse.jdt.internal.compiler.env.INameEnvironment 连接编译器和外部环境 。简而言之,它表示的是类路径。编译器使用该参数来获得可能遇到类型的信息。 org.eclipse.jdt.internal.compiler.IErrorHandlingPolicy 告诉编译器遇到错误时如何 处理。我倾向于在停止之前让编译器接受尽可能多的处理,因此使用了预定义的 DefaultErrorHandlingPolicies.proceedWithAllProblems() 实例。 Map Settings 可以 在 org.eclipse.jdt.internal.compiler.impl.CompilerOptions 中找到的编译器设置。 通过它可以规定是否需要生成行编号,是否忽略方法警告,等等。 org.eclipse.jdt.internal.compiler.ICompilerRequestor 接收编译结果和编译过程中遇 到的任何错误。 org.eclipse.jdt.internal.compiler.IProblemFactory 负责创建 org.eclipse.jdt.core.compiler.IProblem 实例的工厂。如果支持特殊类型的错误处理或 者不同语言版本的错误消息,那么实现该工厂非常有用。该例中使用了标准实现 DefaultProblemFactory(Locale.getDefault())。

探索Eclipse的ASTParser(6)

时间:2011-04-11 IBM Manoel Marques

最后,在编译的时候,还需要一个 org.eclipse.jdt.internal.compiler.env.ICompilationUnit 数组。不要将该接口和 org.eclipse.jdt.core.ICompilationUnit 混淆。不幸的是,它们的名称相同,但后者一 般只在您的类属于 Eclipse Java 项目时才有用。

实现 org.eclipse.jdt.internal.compiler.env.ICompilationUnit 很容易,它对应于 已经创建的 CompilationUnit 节点。清单 11 给出了一种实现方法。

清单 11. ICompilationUnit 实现

static private class CompilationUnitImpl implements ICompilationUnit {   private CompilationUnit unit;   CompilationUnitImpl(CompilationUnit unit) {     this.unit = unit;   }   public char[] getContents() {     char[] contents = null;     try {      Document doc = new Document();      TextEdit edits = unit.rewrite(doc,null);      edits.apply(doc);      String sourceCode = doc.get();      if (sourceCode != null)        contents = sourceCode.toCharArray();     }     catch (BadLocationException e) {      throw new RuntimeException(e);     }     return contents;   }   public char[] getMainTypeName() {     TypeDeclaration classType = (TypeDeclaration) unit.types().get(0);     return classType.getName().getFullyQualifiedName().toCharArray();   }   public char[][] getPackageName() {     String[] names =      getSimpleNames(this.unit.getPackage().getName ().getFullyQualif

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号