I'm using a parser generator that creates somewhat ugly code. As a result my Eclipse project has several dozen warnings emanating from generated source files. I know I can use the @SuppressWarning annotation to suppress particular warnings in particular elements, but any annotations I add by hand will be lost when the parser generator runs again. Is there a way to configure Eclipse to suppress warnings for a particular file or directory?
|
|
||||
|
|
Starting with version 3.8 M6, Eclipse (to be exact: the JDT) has built-in functionality for this. It is configurable through a project's build path: Project properties > Java Build Path > Compiler > Source
Announced here: Eclipse 3.8 and 4.2 M6 - New and Noteworthy, called Selectively ignore errors/warnings from source folders. That's also where the screenshot is from. This is the new feature developed on the previously linked Bug 220928. |
|||||||||||
|
|
There is a ticket for this, Bug 220928, that has since been completed for Eclipse 3.8. Please see this answer for details. If you're stuck with Eclipse 3.7 or lower: The user "Marc" commenting on that ticket created (or at least links to) a plugin called 'warningcleaner' in comment 35. I'm using that with a lot of success while waiting for this feature to be integrated into Eclipse. It's really quite simple:
|
|||||||||||||||||||
|
|
I solved this by using the maven regexp replace plugin - it does not solve the cause, but heals the pain:
Note that I did not manage to get the ** notation to work, so you might have to specify path exactly. See comment below for an improvement on how not to generate duplicate @SupressWarnings |
|||||||||
|
|
I think the best you can do is enable project specific settings for displaying warnings.
On the top of the form is a link for configuring project specific settings. |
|||
|
|
|
User @Jorn hinted at Ant code to do this. Here's what I have
Note that Ant's <replace> does text replacement, not regular expression replacement, so it cannot use the ^ meta-character in the token to match beginning of line as the maven regexp replace plugin does. I'm doing this at the same time that I run Antlr from maven-antrun-plugin in my Maven pom, because the ANTLR maven plugin did not play well with the Cobertura maven plugin. (I realize this is not an answer to the original question, but I can't format Ant code in a comment/reply to another answer, only in an answer) |
|||
|
|
|
I don't think Eclipse inherently provides a way to do this at the directory level (but I'm not sure). You could have the generated files go into a separate Java project, and control warnings for that specific project. I generally prefer to place automatically-generated code in a separate project anyway. |
|||
|
|
|
You can only suppress warnings at the project level. However, you can configure your problems tab to suppress warnings from files or packages. Go into the Configure Contents menu and work with the "On working set:" scope. |
|||||||||
|
|
I'm doing this to a few ANTLR grammars, which generate a Java parser using Ant. The Ant build script adds the |
|||||||
|
|
In the case of ANTLR 2, it is possible to suppress warnings in generated code by appenidng
|
|||
|
|
|
This can be done by excluding certain directories from the build path (The following example is given using Eclipse 3.5)
[2] Add directories to exclude
|
|||
|
|
|
This small python script "patches" the M2E-generated
|
|||
|
|

