972973974975976977978979980981982
if (field != null) { JSONField fieldAnnotation = field.getAnnotation(JSONField.class); if (fieldAnnotation != null) { if (!fieldAnnotation.serialize()) { continue; } if (fieldAnnotation.name().length() != 0) { propertyName = fieldAnnotation.name();
10231024102510261027102810291030103110321033
10601061106210631064106510661067106810691070
JSONField fieldAnnotation = field.getAnnotation(JSONField.class); String propertyName = field.getName(); if (fieldAnnotation != null) { if (!fieldAnnotation.serialize()) { continue; } if (fieldAnnotation.name().length() != 0) { propertyName = fieldAnnotation.name();
864865866867868869870871872873874
} JSONField annotation = method.getAnnotation(JSONField.class); if (annotation != null) { if (!annotation.serialize()) { continue; } if (annotation.name().length() != 0) { String propertyName = annotation.name();
824825826827828829830831832833834
868869870871872873874875876877878
if (annotation == null) { annotation = getSupperMethodAnnotation(clazz, method); } if (annotation != null) { if (!annotation.serialize()) { continue; } if (annotation.name().length() != 0) { String propertyName = annotation.name();
775776777778779780781782783784785