English 中文(简体)
Phantom Project in an Eclipse plugin
原标题:Phantom project in an Eclipse plugin

我正试图把所有项目都放在 com子里,但我获得“<>External Plugin Libraries”,详情如下。 我如何把这个项目当作我没有的项目。 我怎么去掉呢?

wrong projects in plugin
(source: sourceforge.net)

最佳回答

As mentioned in the FAQ page "How do I find a particular class from an Eclipse plug-in?",
External Plug-in Libraries is a project automatically created in your workspace, which will:

  • have all the Eclipse plug-ins you selected on its build path,
  • ensure that they will be consulted by the Java search engine when searching for and opening Java types.

That means you have the RCP edition where a workspace is already set up so that all Eclipse plug-ins are found by the Java search engine.
The manual way to do this is:

  • Activate the Plug-ins view by going to Window > Show View > Other > PDE > Plug-ins.
  • Select all plug-ins in the view.
  • From the context menu, select Add to Java Search.

As of Eclipse 3.4 (Ganymede) the External Plug-in Libraries Java project is hidden by default (see bug 194694).
Use the Java element filters dialog to include the External Plug-in Libraries project in the Package Explorer view.

问题回答

暂无回答




相关问题
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 ...

热门标签