if (clazz.name().equals(getTypeName())) {
// only use line breakpoint when there is an exact match
Method method = clazz.concreteMethodByName(
getMethodName(), getMethodSignature());
if (method != null && !method.isNative()) {
Location location = method.location();
if (location != null && location.codeIndex() != -1) {
request = manager
.createBreakpointRequest(location);
}
}