Configure IntelliJ getter and setter code generation

Viewed 1054

I'm use to defining member variables that are private with a prefix 'm'. Example:

private boolean mDone;

The getter / setter would typically look like this:

public boolean getDone() }
  return mDone;
}

public void setDone(boolean done) {
  mDone = done;
}

The Intellij IDE does have a way of creating these getters/setters but it adds the 'm' prefix to the names of the getter/setter methods. Is there a way to prevent this?

2 Answers
Related