EasyMock allows you to create your own matchers so that you can specify what a mock should return for certain inputs. To do this, you create a custom implementation of their IArgumentMatcher interface.
This interface has two methods:
boolean matches(Object argument);
void appendTo(StringBuffer buffer)
The appendTo() method is used for printing a human-readable message if a match fails. Why does it ask you to append the message to a StringBuffer and not to simply return a String? Why not have the following method on the interface instead?
String message();