// [JACKSON-98]: start with field properties, if any
for (Map.Entry<String,AnnotatedField> en : fieldsByProp.entrySet()) {
AnnotatedField af = en.getValue();
if (fixAccess) {
af.fixAccess();
}
// Does Method specify a serializer? If so, let's use it.
JsonSerializer<Object> annotatedSerializer = findSerializerFromAnnotation(config, af);
props.add(pb.buildProperty(en.getKey(), annotatedSerializer, af, staticTyping));
}