Reputation: 145
I want to send someone a file with the compilation warnings and errors from a Java project I have in Eclipse, but I do not know how to do this.
I know Eclipse uses it's own Java compiler. Is there a way, for instance, to export the information in the Problems tab to a file?
Upvotes: 3
Views: 158
Reputation: 7011
Right click > Select All > Copy & Paste.
When you paste, you'll get a string of text like this...
Description Resource Path Location Type
The import android.app.Activity is never used GetPhotos.java /PhotoUp/src/com/photoup line 10 Java Problem
The import android.os.Bundle is never used GetPhotos.java /PhotoUp/src/com/photoup line 15 Java Problem
Upvotes: 2