Eclipse 插件/查看问题
我有一个包含类 A 的插件,它通过以下代码行打开类 B 中定义的视图:
(VideoLogView) PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().showView("Videolog.VideoLogView");
我需要在视图(类 B 对象)的 createPartControl() 方法中执行的操作是访问类中的方法一个物体。
如何做到这一点?
谢谢。
I have a plugin which contains class A that brings up a view defined in class B via the following line of code:
(VideoLogView) PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().showView("Videolog.VideoLogView");
What I need to do in the createPartControl() method of the view (class B object) is access a method in the class A object.
How can this be done?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您面临着“如何将参数传递给我的观点”的经典问题?
此线程最好地说明了这一点:
为什么? 因为(强调我的):
文章“Eclipse Workbench:使用选择服务”也可以给出你一些指点。
Look like you are facing the classic issue of "how do I pass arguments to my view" ?
This thread illustrates it best:
Why? Because (emphasis mine):
The article "Eclipse Workbench: Using the Selection Service" can also give you some pointers.