Eclipse RCP 中有类似 OLE 的东西吗?
我们有三个并行运行的 Eclipse RCP 应用程序。现在我需要实现另一个 RCP 来显示/操作部分正在运行的应用程序。在 Windows 中,解决方案是提供 OLE-Control 功能。
我怎样才能在 Eclipse 中实现同样的事情?
We have three Eclipse RCP applications running in parallel. Now I need to implement another RCP that displays/operates part of the running applications. In Windows the solution would be to provide the functionality as OLE-Control.
How can I achieve the same thing in Eclipse?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Win32 版本的 SWT 中提供的 OLE SWT 包中存在一些有限的 OLE 交互(OLE 文档和 ActiveX 控件)。您需要确保在 win32 与其他平台上运行此 RCP 应用程序的不同版本,或者将任何每个平台的代码封装在片段中。
请参阅 http://www.eclipse.org/articles/ article.php?file=Article-ActivexSupportInSwt/index.html 了解 SWT OLE 集成的介绍。
There is some limited OLE interation (OLE Documents and ActiveX controls) in the OLE SWT package available in the win32 version of SWT. You would need to make sure that you ran different versions of this RCP app on win32 vs another platform or you encapsulated any per-platform code in a fragment.
See http://www.eclipse.org/articles/article.php?file=Article-ActivexSupportInSwt/index.html for an introduction to SWT OLE integration.
Eclipse 中没有 OLE/进程间通信。您可以坚持使用简单的 Java 方式(例如进程之间的 TCP-IP 连接)
There isn't an OLE/inter process communication within Eclipse. You can stick to plain Java way of doing things (such as a TCP-IP connection between processes)