I have a question on eclipse settings.
I want to declare some variables having special characters in it i.e. m_memberVar
etc and want to generate the getter and setter by eliminating the special character and in standard format i.e. for above variable, the getter and setter method will be
public void setMemberVar(DataType dt) {}
and public ReturnType getMemberVar() {}
But the default settings in eclipse does not generate above methods instead generates getM_memberVar()
and setM_memberVar().
Is it possible to settings accordingly so that above requirement can be fulfilled? Can I prepare some xml file with all editor related settings I require in my project and import it in eclipse?
Thanks in advance and waiting for your reply.