0

I'm a student and newbie in java coding. Currently, I'm analyzing codes

from eclipse/che for ide and editor customizing.

There are packages such as import org.eclipse.che.api.core

I wanna look into org.eclipse.che.api.core , and I couldn't find a way to

do so. (Also no javadoc found)

Any advice for this problem?

Regolith
  • 2,944
  • 9
  • 33
  • 50

2 Answers2

0

If you are using Eclipse and build your project with Maven, you usually can jump into the source code of any class with F3 (on the class name in your code) - if the class is from an external jar, Eclipse downloads the source code (if available) and opens it for you.

J Fabian Meier
  • 33,516
  • 10
  • 64
  • 142
0

You should have external libraries folder in the project explorer. Expand it and you should find what you are looking for.

bianchi
  • 500
  • 2
  • 12