101102103104105106107108109110111
if (field == null) pathNotFound(path, fullPath); object = field.getFieldValue(instance); }else{ Method method = parent.findMethod(path, new String[0]); if (method == null) pathNotFound(path, fullPath); object = method.invoke(instance, null); }