My Eclipse is broken since this morning probably due to an automatic update (Java EE?). Version is:
Eclipse Java EE IDE for Web Developers. Version: Kepler Service Release 1 Build id: 20130919-0819
Pressing Ctrl+O works, but pressing it again should show inherited members but it does not. Here is what I have tried without success:
- cleaning the project
- close/open the project
- restarting eclipse with clean param
After additional research I found that this affects non-abstract classes that extend an abstract and generified class where the generic is found in an external dependency (jar). This fails:
public class MyProblematicClass extends MyAbstractClass<SomeProjectExternalClass> // fails
But this works:
public class MyProblematicClass extends MyAbstractClass<SomeProjectInternalClass> // success
Could this be an Eclipse bug, any clues ?

