up vote 2 down vote favorite
share [g+] share [fb]

I am programming in Java in Eclipse. I was wondering if there is a way to search for all non final static variables in my code base.

For example:

private static int MY_VAR = 0;

But not:

public static final int MY_CONSTANT = 1;
link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

As mentioned in this question, a regex could do the job.

I would however prefer findbugs for a more complete detection
(or at least use the regex in a checkstyle configuration)

Those static analysis tools can generate much more useful informations than just list non-final static variables, as they detect when and describe why a given practice is inappropriate.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.