MockableMethod method = (MockableMethod) j.next();
String bindSignature = method.getBindSignature();
// Separate the object methods that need to be mocked as they
// are handled specially.
ObjectMethodAction action =
GenerationHelper.getObjectMethodActionBySignature(
bindSignature);
if (action != null) {
method = action.createMockableMethod(method);
}
if (method != null) {
hasIdentifiers |= method.getDeclareIdentifier();
normalMethods.add(method);