如果 IViewSite 类没有任何子级,那么 getViewSite().getWorkbenchWindow() 有何意义?
我在文档中读到 IViewSite
是一个无子接口,那么 IViewSite
类型的对象如何执行 getWorkbenchWindow()
方法,如果它没有任何子类来实现它吗?
(在文档中它说这个类不应该由客户端实现;但它没有任何其他预制的子类)
I read in the docs that IViewSite
is a children-less interface, so how can an object of type IViewSite
execute the getWorkbenchWindow()
method if it does not have any child class to implement it?
(In the docs it says that this class is not supposed to be implemented by clients; but it does not have any other premade children)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看
IViewSite
的类型层次结构(打开该类,然后按CTRL-T
)。它将向您显示一个实现类org.eclipse.ui.internal.ViewSite
。文档基本上说这不应该让您担心。
Look at the type hierarchy of
IViewSite
(Open the class, then hitCTRL-T
). It will show you an implementation classorg.eclipse.ui.internal.ViewSite
.The docs basically say that this should not concern you.