if ( isNotGetterOrSetter( methodName ) && isReasonableMethod( clazz,
methodName ) && Modifier.isPublic( modifiers ) ) {
Class< ? >[] listParam = aMethod.getParameterTypes();
MethodInfo info = new MethodInfo( methodName,
solveParams( listParam ) );
this.methods.add( info );
}
}
}