Home | History | Annotate | Download | only in impl

Lines Matching refs:candidate

856      * Appends message if the given name is similar to the candidate.
859 * @param name the (trimmed) name to be test against the candidate, not null
860 * @param candidate the candidate name (not null)
863 final String candidate) {
864 if (name.equals(candidate)) {
872 // then suggest the candidate adapter class name.
873 if (name.regionMatches(true, 0, candidate, 0, PKG_LEN + 5)) {
875 messageBuffer.append(candidate);