Fix Javadoc warnings
This commit is contained in:
parent
a67d21878b
commit
2817281db9
|
@ -37,13 +37,18 @@ import java.util.Map;
|
||||||
public interface Put<K, V> {
|
public interface Put<K, V> {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Removes all of the mappings from this map.
|
||||||
|
*
|
||||||
* @see Map#clear()
|
* @see Map#clear()
|
||||||
*/
|
*/
|
||||||
void clear();
|
void clear();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Associates the specified value with the specified key in this map.
|
||||||
|
* <p>
|
||||||
* Note that the return type is Object, rather than V as in the Map interface.
|
* Note that the return type is Object, rather than V as in the Map interface.
|
||||||
* See the class Javadoc for further info.
|
* See the class Javadoc for further info.
|
||||||
|
* </p>
|
||||||
*
|
*
|
||||||
* @param key key with which the specified value is to be associated
|
* @param key key with which the specified value is to be associated
|
||||||
* @param value value to be associated with the specified key
|
* @param value value to be associated with the specified key
|
||||||
|
@ -57,6 +62,8 @@ public interface Put<K, V> {
|
||||||
Object put(K key, V value);
|
Object put(K key, V value);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Copies all of the mappings from the specified map to this map.
|
||||||
|
*
|
||||||
* @param t mappings to be stored in this map
|
* @param t mappings to be stored in this map
|
||||||
* @see Map#putAll(Map)
|
* @see Map#putAll(Map)
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue