@@ -38,14 +38,14 @@ protected ClassIntrospector() { }
38
38
*/
39
39
40
40
/**
41
- * Factory method that constructs an introspector that only has
41
+ * Factory method that introspects a {@link AnnotatedClass} that only has
42
42
* information regarding annotations class itself (or its supertypes) has,
43
43
* but nothing on methods or constructors.
44
44
*/
45
45
public abstract AnnotatedClass introspectClassAnnotations (JavaType type );
46
46
47
47
/**
48
- * Factory method that constructs an introspector that only has
48
+ * Factory method that introspects a {@link AnnotatedClass} that only has
49
49
* information regarding annotations class itself has (but NOT including
50
50
* its supertypes), but nothing on methods or constructors.
51
51
*/
@@ -58,29 +58,29 @@ protected ClassIntrospector() { }
58
58
*/
59
59
60
60
/**
61
- * Factory method that constructs an introspector that has all
61
+ * Factory method that introspects a {@code BeanDescription} that has all
62
62
* information needed for serialization purposes.
63
63
*/
64
64
public abstract BeanDescription introspectForSerialization (JavaType type ,
65
65
AnnotatedClass classDef );
66
66
67
67
/**
68
- * Factory method that constructs an introspector that has all
68
+ * Factory method that introspects a {@code BeanDescription} that has all
69
69
* information needed for deserialization purposes.
70
70
*/
71
71
public abstract BeanDescription introspectForDeserialization (JavaType type ,
72
72
AnnotatedClass classDef );
73
73
74
74
/**
75
- * Factory method that constructs an introspector that has all
75
+ * Factory method that introspects a {@code BeanDescription} that has all
76
76
* information needed for constructing deserializers that use
77
77
* intermediate Builder objects.
78
78
*/
79
79
public abstract BeanDescription introspectForDeserializationWithBuilder (JavaType builderType ,
80
80
BeanDescription valueTypeDesc );
81
81
82
82
/**
83
- * Factory method that constructs an introspector that has
83
+ * Factory method that introspects a {@code BeanDescription} that has
84
84
* information necessary for creating instances of given
85
85
* class ("creator"), as well as class annotations, but
86
86
* no information on member methods
0 commit comments