在Eclipse Mars Release(4.5.0)中导入IPath

时间:2015-11-10 15:34:24

标签: eclipse eclipse-plugin

我现在正在Eclipse和Internet上寻找一个解决方案,以便在Eclipse Mars Release(4.5.0)中找到如何在我的课程中包含IPATH的解决方案。我没有任何名为org.eclipse.core.runtime的插件,它应该包含IPath。 IPath是否过时或我是否必须下载另一个插件?

我只有org.eclipse.core.runtime_3.11.0.v20150405-1723.jar和org.eclipse.core.runtime.compatibility_3.2.300.v20150423-0821.jar。

以下是我将使用IPath的代码片段:

IPath path = new Path(" /DirectoryReader.java");
IFile sampleFile =  ResourcesPlugin.getWorkspace().getRoot().getFile(path);

提前,任何提示!

1 个答案:

答案 0 :(得分:1)

org.eclipse.core.runtime_3.11.0.v20150405-1723.jarorg.eclipse.core.runtime插件。 _后面的部分是插件版本(3.11.0 build v20150405-1723)

要将此作为插件的依赖项包含在内,请打开“plugin.xml”/“MANIFEST.MF”编辑器,然后转到“依赖项”选项卡。在“必需的插件”部分中,单击“添加...”,然后从列表中选择“org.eclipse.core.runtime”。

像: enter image description here

注意:当您创建插件时,'org.eclipse.core.runtime'通常会自动添加到插件依赖项中,因此您可能会发现它已经在列表中。