The letter m as a prefix means that it is a member of the class. The letters lv mean that it is a local variable. The letters pm mean that this is a parameter.
Example:
class Example { Integer mMemberOfClass; public void someMethod(Object pmSomeParameter) { Integer lvSomeLocalVariable; } }
source share