我SWT
想像在 Eclipse 文本编辑器中打开的文件一样显示浏览器。我当前的实现捕获了shell
并TextEditor
阻止了不可取的编辑器。
Shell parentShell=PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getActiveEditor().getSite().getShell();
Shell myShell = new Shell (parentShell, SWT.EMBEDDED);
myShell.setLayout (new FillLayout());
Browser mybrowser = new Browser (myShell, SWT.NONE);