以编程方式保存 Eclipse 编辑器
我正在开发一个插件。
单击按钮时,我想调用 Eclipse 的保存方法或调用 Eclipse 工具栏上的保存按钮。
有什么方法可以做到呢?
I am developing a plug-in.
On clicking a button, I'd like to call the save method of Eclipse or call the save button on Eclipse toolbar.
What is the way to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
应该可以解决问题。
如果您想保存活动编辑器,请尝试
注意,导航路径中的元素可能为空。
should do the trick.
If you want to save the active editor, please try
Note that the elements in the navigation path may be null.
我用它来保存一个或多个项目的脏编辑器:
其中 prj 是一个 IProject 对象。
希望这有帮助
再见
I use this to save dirty editors for one or more projects:
where
prj
is an IProject object.hope this helps
bye
我用过——
I used -