Tagged Questions

2
votes
4answers
117 views

Could someone explaining the reasoning behind some of these PMD rules?

DataflowAnomalyAnalysis: Found 'DD'-anomaly for variable 'variable' (lines 'n1'-'n2'). DataflowAnomalyAnalysis: Found 'DU'-anomaly for variable 'variable' (lines 'n …
5
votes
2answers
77 views

Best php qa tools

Hello, I am looking for qa tools for php. I am used to pmd, findbugs and checkstyle in the java world. Do you know some similar tools for php doing code analysis ? So far I have f …
0
votes
1answer
23 views

PMD rule for checking html/jsp files

Hi, I´d like to create a PMD rule that checks for a regex expression in any file (txt, html, jsp, etc.). The rule does not use Java or XPath structure. The idea is to read the fi …
1
vote
1answer
97 views

PMD - check for too many public methods (but exclude constructors and getters/setters)

I wish to add a PMD check to ensure that a class does not have too many public methods, but I do not want constructors and getters/setters to be included in the check. The Excessi …
1
vote
3answers
125 views

Simple, general-interest, code-analyzers based, Java questions

OK, after reviewing some code with PMD and FindBugs code analyzers, i was able to do great changes on the reviewed code. However, there are some things i don't know how to fix. I' …
2
votes
2answers
195 views

Code analyzers: PMD & FindBugs

1. Regarding PMD: 1.1 How do I set the PMD checks, to ignore some of them, like "Variable name is too short, or too long", "Remove empty constructor, etc" - and if I do that, anot …
4
votes
3answers
252 views

Is there a Findbugs and / or PMD equivalent for C/C++?

I was recently asked about alternatives to Coverity Prevent for a code base that includes both C/C++ and Java. Obviously, on the Java side, the free tools available include Findbu …
2
votes
1answer
60 views

How do I enforce assigning to arguments of methods using FindBugs?

As an alternative to littering my code with thousands of final keywords in front of my parameters, I'm trying to enforce it using FindBugs. It doesn't seem possible to do this, bu …
0
votes
2answers
66 views

PMD rule DataflowAnomalyAnalysis oddness.

I have the following JUnit test: @Test public void testRunLocalhost() throws IOException, InterruptedException { // Start an AnnouncerThread final AnnouncerThread announce …
4
votes
3answers
353 views

Do you know of pmd or checkstyle definition files that will enforce hibernate best practices?

For example, not to build queries by string manipulation, and the like.
4
votes
4answers
670 views

Java PMD warning on non-transient class member

On line: private boolean someFlag; I get the following PMD warning: Found non-transient, non-static member. Please mark as transient or provide accessors. Can someone plea …
5
votes
8answers
3k views

Checkstyle vs. PMD

We are introducing static analysis tools into the build system for our Java product. We are using Maven2 so Checkstyle and PMD integration come for free. However it looks like ther …
3
votes
8answers
200 views

Detect changing value of object passed as parameter

I'm now working with code that looks like this public String getName(User user) { user.setSth(...); return user.getName(); } I think it's bad practice to change object …