cls = cls.getSuperclass();
}
for( Method method : allMethods ) {
// Check if the kind of direct method -if any
DirectMethod methodAnnotation = method.getAnnotation(DirectMethod.class);
boolean isStandardMethod = methodAnnotation != null;
if( !isStandardMethod ) {
isStandardMethod = method.getName().startsWith(STANDARD_METHOD_NAME_PREFIX);
}