How do I get rid of “Current text selection cannot be opened in an editor” in Eclipse?

天大地大妈咪最大 提交于 2020-01-20 04:30:05

问题


Sometimes, I get this message in the status bar when I press F3 on a Type in a Java editor:

Current text selection cannot be opened in an editor

When I copy the selection into the clipboard and use Ctrl+Shift+T to open the "Open Type" dialog, I can paste the value and it will display the type and I can open it. The type is on the class path (no compile errors).

In other Java editors in the same project, F3 / Ctrl-Click works.

In the "broken" editor, it only works on internal fields and methods. For internal fields, it only works in the place where the field is defined. All places where a field is used are dead. "Mark Occurrences" works, though.

How do I get rid of it?

So far, I tried:

  1. Close and open the editor
  2. Clean the project
  3. Clean all projects
  4. "Update Project..." in the Maven context menu
  5. Restart Eclipse
  6. Restart Eclipse with -clean

This happens on Eclipse 3.7.2 with m2e 1.3.1 installed.


回答1:


[UPDATE] This seems to be a bug somewhere in the depths of m2e and JDT. Usually, it appears when you have several projects (Maven multi module / reactor build) and the modules MA, MB and MC depend on each other:

MC depends on MB depends on an inner parameterized type X.Y<T> of MA.

and you have closed the module MB. On the classpath of MC, this will look like so:

MB.jar
MA

That is MB exists as a JAR on the classpath while MA is imported as an Eclipse project from the workspace.

In this situation, Eclipse gets confused when reading .class files in MB.jar which need inner parameterized types from MA. My guess is that it needs the type from MB.jar, parses it which tells it of the dependency to the type in MA which it then tries to parse only to find that the type parameter for T can't be resolved since parsing of MB isn't finished, yet.

There are three fixes:

  1. Close MA. That will import everything as a JAR.
  2. Open the project MB.
  3. Make the inner type a toplevel type

[OLD]

If this happens, try these steps in order of increasing despair:

  1. Close the editor and open it again.
  2. Clean the project
  3. Close the project and open it again.
  4. Restart Eclipse

If all that fails:

  1. Export your preferences
  2. Exit Eclipse
  3. Delete (or rename) the folder .metadata in your workspace. It's an invisible folder on some OSs but it's there.
  4. Start Eclipse again
  5. Import your preferences
  6. Import all projects again. For this, select the workspace. Eclipse will then list all projects in the dialog and you can select all of them at once.

Related:

  • Bug 430605 - [select] Current text selection cannot be opened in an editor



回答2:


There is a bug in Eclipse (in Luna at least) for a very specific workflow, which might not be the answer to this specific question, but might be helpful for others.

If you perform an import into the src (meaning src folder has focus before performing import) folder from an extracted jar (as source code), and you place breakpoints in the nested *.java files in the nested packages, it won't hit those breakpoints. In order to get things to work, you must keep hitting F3 instead of using "Open Declaration" to get to the *.java file you want to set a breakpoint in, then add the breakpoint by double clicking in the far left margin. Then Run > Debug As > Java Application.



来源:https://stackoverflow.com/questions/18227733/how-do-i-get-rid-of-current-text-selection-cannot-be-opened-in-an-editor-in-ec

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!