实现 WizardExportResourcesPage 时,如何修改所选资源?
我的自定义导出向导实现了 WizardExportResourcesPage。最初选择的资源是用户单击导出时选择的工作区资源。
但是 eclipse 项目包含一个 .settings 文件夹以及一个 .project 文件。我希望默认情况下取消选择这些文件,和/或什至隐藏在资源列表中。
有办法做到这一点吗?
My custom Export Wizard implements a WizardExportResourcesPage. The initially selected resources are whichever workspace resources were selected when the user clicked Export.
However the eclipse project contains a .settings folder, as well as a .project file. I want these files to be unselected by default, and/or maybe even hidden in the resources list.
Is there a way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
重写方法
hasExportableExtension
并在此处检查资源是否与 settings/project 匹配,并为您不想导出的文件返回 false。Override the method
hasExportableExtension
and here check if the resource matches settings/project and return false for files you dont want to export.