Skip to content

Commit d3c0ed9

Browse files
committed
javadoc fix
1 parent ff0b9c2 commit d3c0ed9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/main/java/tools/jackson/databind/introspect/ClassIntrospector.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ protected ClassIntrospector() { }
3838
*/
3939

4040
/**
41-
* Factory method that constructs an introspector that only has
41+
* Factory method that introspects a {@link AnnotatedClass} that only has
4242
* information regarding annotations class itself (or its supertypes) has,
4343
* but nothing on methods or constructors.
4444
*/
4545
public abstract AnnotatedClass introspectClassAnnotations(JavaType type);
4646

4747
/**
48-
* Factory method that constructs an introspector that only has
48+
* Factory method that introspects a {@link AnnotatedClass} that only has
4949
* information regarding annotations class itself has (but NOT including
5050
* its supertypes), but nothing on methods or constructors.
5151
*/
@@ -58,29 +58,29 @@ protected ClassIntrospector() { }
5858
*/
5959

6060
/**
61-
* Factory method that constructs an introspector that has all
61+
* Factory method that introspects a {@code BeanDescription} that has all
6262
* information needed for serialization purposes.
6363
*/
6464
public abstract BeanDescription introspectForSerialization(JavaType type,
6565
AnnotatedClass classDef);
6666

6767
/**
68-
* Factory method that constructs an introspector that has all
68+
* Factory method that introspects a {@code BeanDescription} that has all
6969
* information needed for deserialization purposes.
7070
*/
7171
public abstract BeanDescription introspectForDeserialization(JavaType type,
7272
AnnotatedClass classDef);
7373

7474
/**
75-
* Factory method that constructs an introspector that has all
75+
* Factory method that introspects a {@code BeanDescription} that has all
7676
* information needed for constructing deserializers that use
7777
* intermediate Builder objects.
7878
*/
7979
public abstract BeanDescription introspectForDeserializationWithBuilder(JavaType builderType,
8080
BeanDescription valueTypeDesc);
8181

8282
/**
83-
* Factory method that constructs an introspector that has
83+
* Factory method that introspects a {@code BeanDescription} that has
8484
* information necessary for creating instances of given
8585
* class ("creator"), as well as class annotations, but
8686
* no information on member methods

0 commit comments

Comments
 (0)