I use to define member variables that are private with the prefix "m". Example:
private boolean mDone;
A getter / setter will usually look like this:
public boolean getDone() } return mDone; } public void setDone(boolean done) { mDone = done; }
The Intellij IDE has a way to create these getters / seters, but it adds the prefix 'm' to the getter / setter method names. Is there any way to prevent this?
source share