It is not necessary to document simple accessor and mutator methods.
A simple accessor method returns a primitive or String and not a non-String object
[ eg: int getNum( ) ].
A simple mutator method receives a primitive or String and not a non-String object
[ eg: void setNum(int value) ].
Do document accessor and mutator methods that receive or return an object other than a String.
Do document accessor methods that return a "magic number"
[ eg: public static int size( ) returning the number of bytes in a record ].