English 中文(简体)
我怎么能与来源进口org.eclipse.pde.internal?
原标题:How can I import org.eclipse.pde.internal with sources?

The problem is, that this package and its children are not seen in the list of packages of "import". When I import all pde packages, org.eclipse.pde.internal somehow becomes usable anyway. But I don t see its sources. How can I manage this package?

最佳回答

这个问题由我的同事解决。

  1. <代码>org.eclipse.pde.internal。

  2. Eclipse 3.7.2 only haven t the PDE sources. 存放处的适当名录是空的。 我下班到3.7.0,现在是科索沃。

问题回答

在这里,Eclipse社区的一些规则可能有助于:

  1. 包裹名称应与插图名称相匹配。 如果他们不被剥夺权利。 您所寻求的法典应载于org.eclipse.pde.internal(现存)。 页: 1

  2. OSGi允许将包裹藏在X中,从其他金.中。 这一特征实际上没有使用。 你仍然可以进口这些班级,但是Eclipse没有在完成法典时显示这些班级,你会得到警告。 OSGi/bundle等舱载重机可以投下。 无ClassDefFoundError,但这一选择通常残疾。 您可以在你试图从中进口的单体中找到出口清单。

    大部分非出口一揽子计划都低于一揽子计划internal,因此,这只是一个方面: 不使用该守则。 它不是正式文本的一部分。 它可以改变下一个版本的Eclipse或pl,如果你的代码不成正式APIC,任何人都不会予以注意。

当然,世界是这样简单的。 为什么使用内部法典,但班轮选择是残疾的(Eclipse可以强制实施这种行为,但无)。

如果您认为某些内部的APICS将非常有用,可在https://bugs.eclipse.org/bugs/上提交一份bug报告。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签