如何在您的 RCP 应用程序中使用 eclipse 网络连接页面?

How to use the eclipse network connection page in your RCP application?

我想在我的 RCP 应用程序中使用 eclipse 网络连接页面。

是否有一种 jar 或插件的想法,如果我只是在我的处理程序中调用一些方法,window 会弹出,而没有真正创建首选项 window?我点击了 this 链接,但它谈论的是网络连接,而不是他们如何带来那里提到的 window!

我是这个领域的新手,对于任何愚蠢的错误提前道歉...

此首选项页面的 ID org.eclipse.ui.net.NetPreferences 您可以使用以下方法仅显示该首选项页面:

Shell shell = .... get current shell

String id = "org.eclipse.ui.net.NetPreferences";

PreferenceDialog dialog 
   = PreferencesUtil.createPreferenceDialogOn(shell, id, new String[] {id}, null);

dialog.open();