git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1478488 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-05-02 19:05:44 +00:00
parent 9e529c7c6a
commit d1350bf73f
2 changed files with 2 additions and 1 deletions

View File

@ -26,8 +26,8 @@
* effectively change the value of the primitive/string. Another use case is to store a frequently changing primitive in
* a collection (for example a total in a map) without needing to create new Integer/Long wrapper objects.
*
* @since 2.1
* @param <T> the type to set and get
* @since 2.1
* @version $Id$
*/
public interface Mutable<T> {

View File

@ -22,6 +22,7 @@
/**
* A mutable <code>Object</code> wrapper.
*
* @param <T> the type to set and get
* @since 2.1
* @version $Id$
*/