ASTParser 依赖项
我正在尝试在 此 教程的帮助下学习 ASTParser。当我编译第一段代码时:
ASTParser parser = ASTParser.newParser(AST.JLS2); parser.setSource("".toCharArray()); CompilationUnit 单元 = (CompilationUnit) parser.createAST(null); 单元.recordModifications(); AST ast = unit.getAST();
我收到此错误:
未找到来源。此类文件的 JAR 属于容器“插件依赖项”,该容器不允许修改其条目上的源附件。
我能做些什么?
I'm trying to learn ASTParser with the help of this tutorial. When I compile the first slice of code:
ASTParser parser = ASTParser.newParser(AST.JLS2);
parser.setSource("".toCharArray());
CompilationUnit unit = (CompilationUnit) parser.createAST(null);
unit.recordModifications();
AST ast = unit.getAST();
I get this error:
Source non found. The JAR of this class file belongs to container 'Plug-in Dependencies' which does not allow modifications to source attachments on its entries.
What can I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 this,您应该包括这些jar 文件:
According to this, you should include these jar files: