Eclipse插件迁移Kepler到Luna

时间:2015-05-27 09:13:40

标签: java eclipse rcp

我正在将一个eclipse插件从Kepler版本迁移到Luna。 我有这个错误:

Discouraged access: The type 'ProxyManager' is not API (restriction on required library '/srv/data204139/dchesnea/LUNA/eclipse/plugins/org.eclipse.core.net_1.2.200.v20140124-2013.jar')

有你的想法吗?

1 个答案:

答案 0 :(得分:0)

org.eclipse.core.internal.net.ProxyManager位于内部包中,因此不属于官方Eclipse API - 您不应该使用它(Eclipse API Rules of Engagement)。

代理管理器的一些功能可通过org.eclipse.core.net.proxy.IProxyService OSGi服务获得,该服务是官方API的一部分。