vote up 2 vote down star

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;
flag

1 Answer

vote up 3 vote down check

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|flag

Your Answer

Get an OpenID
or

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