I want to read jar class files into my eclipse. Suppose I wrote the following code:
List list = new ArrayList();
When I ctrl click on List, it shows two options. One of the option is Open Declaration which will show the methods in List interfaces. But when I click it it shows source not found. I've added java-util-1.8.0.jar
to it but still it won't work.
What am I doing wrong?