Static reference
Hi All,
I am developing a small Java plugin for an application.
My plugin's main () gets intiated by the batch process.
Now in doing this i have methods called from main() which are
also coming as static.All the member variables which i need across the methods are therefore coming as Static.
I can do the same thing by distributing the logic into other classes
and avoid the static references.Now my concern is using too
many static references a Bad coding practice ? or how would
it affect the performance by memory wise etc.

