Home
last modified time | relevance | path

Searched refs:_paramAnnotations (Results 1 – 4 of 4) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/
DAnnotatedWithParams.java21 protected final AnnotationMap[] _paramAnnotations; field in AnnotatedWithParams
32 _paramAnnotations = paramAnnotations; in AnnotatedWithParams()
40 _paramAnnotations = paramAnnotations; in AnnotatedWithParams()
51 AnnotationMap old = _paramAnnotations[paramIndex]; in addOrOverrideParam()
54 _paramAnnotations[paramIndex] = old; in addOrOverrideParam()
65 _paramAnnotations[index] = ann; in replaceParameterAnnotations()
77 if (_paramAnnotations != null) { in getParameterAnnotations()
78 if (index >= 0 && index < _paramAnnotations.length) { in getParameterAnnotations()
79 return _paramAnnotations[index]; in getParameterAnnotations()
DAnnotatedConstructor.java52 return new AnnotatedConstructor(_typeContext, _constructor, ann, _paramAnnotations); in withAnnotations()
DAnnotatedMethod.java57 return new AnnotatedMethod(_typeContext, _method, ann, _paramAnnotations); in withAnnotations()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/
DClassUtil.java1329 private transient Annotation[][] _paramAnnotations; field in ClassUtil.Ctor
1364 Annotation[][] result = _paramAnnotations; in getParameterAnnotations()
1367 _paramAnnotations = result; in getParameterAnnotations()