Improved Javadoc
This commit is contained in:
parent
3794f995ba
commit
d37e7878e6
|
@ -38,7 +38,7 @@ import org.springframework.util.Assert;
|
|||
* @author Rossen Stoyanchev
|
||||
* @since 3.2
|
||||
*
|
||||
* @see http://gafter.blogspot.nl/2006/12/super-type-tokens.html
|
||||
* @see <a href="http://gafter.blogspot.nl/2006/12/super-type-tokens.html">Neal Gafter on Super Type Tokens</a>
|
||||
*/
|
||||
public abstract class ParameterizedTypeReference<T> {
|
||||
|
||||
|
|
|
@ -19,7 +19,6 @@ package org.springframework.http.converter;
|
|||
import java.io.IOException;
|
||||
import java.lang.reflect.Type;
|
||||
|
||||
import org.springframework.core.ParameterizedTypeReference;
|
||||
import org.springframework.http.HttpInputMessage;
|
||||
import org.springframework.http.MediaType;
|
||||
|
||||
|
@ -30,7 +29,7 @@ import org.springframework.http.MediaType;
|
|||
* @author Arjen Poutsma
|
||||
* @since 3.2
|
||||
*
|
||||
* @see ParameterizedTypeReference
|
||||
* @see org.springframework.core.ParameterizedTypeReference
|
||||
*/
|
||||
public interface GenericHttpMessageConverter<T> extends HttpMessageConverter<T> {
|
||||
|
||||
|
@ -45,7 +44,7 @@ public interface GenericHttpMessageConverter<T> extends HttpMessageConverter<T>
|
|||
|
||||
/**
|
||||
* Read an object of the given type form the given input message, and returns it.
|
||||
* @param clazz the type of object to return. This type must have previously
|
||||
* @param type the type of object to return. This type must have previously
|
||||
* been passed to the {@link #canRead canRead} method of this interface,
|
||||
* which must have returned {@code true}.
|
||||
* @param type the type of the target object
|
||||
|
|
Loading…
Reference in New Issue