Reputation: 88
My eclipse is not showing description of any default classes.
It is showing:
Source not found.
The source attachment does not contain the source for the file GestureDetector.class
You can change the source attachment by clicking change attached source below
Please help me..
Upvotes: 0
Views: 301
Reputation: 62285
As the error say. Click on "Change attached source" (there should be a button) and specify the jar file or folder that does contain the source code for this class.
I assume, that you include some jar file that contains GestureDetector.class
in your project. Per default, Eclipse looks into this jar for the source code. Thus, I assume the jar contains binary only. Thus, you need to get a different jar that contains binaries and source code. Or you need to download the source code from somewhere on the Internet (if available), store in at any location you like and then specify this folder as indicated at the beginning.
Upvotes: 1