/*
Accessor or mutator: mutator
Return data type: void
Explicit parameter(s) data type(s): int month
Call statement: newDate.setMonth(10);
*/
Strictly speaking there is no way to tell whether the method is an accessor or a mutator without seeing the body.
It is only a convention that methods with a name of the form set... are mutators.