Description
WSIBPValidator.isValid() does not check method signature before calling "check*" method through reflection.
Also, the check m.getModifiers() == Member.PUBLIC is always false so should be removed. The call getClass().getMethods() only returns public members, and if it was needed the check for public should be Modifier.isPublic(m.getModifiers())