235236237238239240241242243244245
return name; } public static String getJSONName(AccessibleObject object) { String name = null; JSONName jsonNameAnnotation = object.getAnnotation(JSONName.class); if (jsonNameAnnotation != null) { name = jsonNameAnnotation.value(); } return name; }
229230231232233234235236237238239