Skip to content

Commit 08bf347

Browse files
committed
Javadoc
1 parent e61f79b commit 08bf347

File tree

8 files changed

+33
-4
lines changed

8 files changed

+33
-4
lines changed

src/main/java/org/apache/commons/lang3/mutable/MutableBoolean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/**
2626
* A mutable {@code boolean} wrapper.
2727
* <p>
28-
* This class was created before the introduction of {@link AtomicBoolean}.
28+
* This class was created before the introduction of the the {@link java.util.concurrent.atomic} package and the {@link AtomicBoolean} class.
2929
* </p>
3030
* <p>
3131
* Note that as MutableBoolean does not extend {@link Boolean}, it is not treated by {@link String#format(String, Object...)} as a Boolean parameter.

src/main/java/org/apache/commons/lang3/mutable/MutableByte.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,20 @@
1616
*/
1717
package org.apache.commons.lang3.mutable;
1818

19+
import java.util.concurrent.atomic.AtomicInteger;
20+
1921
/**
2022
* A mutable {@code byte} wrapper.
2123
* <p>
24+
* This class was created before the introduction of the the {@link java.util.concurrent.atomic} package and the {@link AtomicInteger} class.
25+
* </p>
26+
* <p>
2227
* Note that as MutableByte does not extend Byte, it is not treated by String.format as a Byte parameter.
2328
* </p>
29+
* <p>
2430
*
2531
* @see Byte
32+
* @see AtomicInteger
2633
* @since 2.1
2734
*/
2835
public class MutableByte extends Number implements Comparable<MutableByte>, Mutable<Number> {

src/main/java/org/apache/commons/lang3/mutable/MutableDouble.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,21 @@
1616
*/
1717
package org.apache.commons.lang3.mutable;
1818

19+
import java.util.concurrent.atomic.DoubleAccumulator;
20+
import java.util.concurrent.atomic.DoubleAdder;
21+
1922
/**
2023
* A mutable {@code double} wrapper.
2124
* <p>
25+
* This class was created before the introduction of the the {@link java.util.concurrent.atomic} package and the {@link DoubleAccumulator} class.
26+
* </p>
27+
* <p>
2228
* Note that as MutableDouble does not extend Double, it is not treated by String.format as a Double parameter.
2329
* </p>
2430
*
2531
* @see Double
32+
* @see DoubleAccumulator
33+
* @see DoubleAdder
2634
* @since 2.1
2735
*/
2836
public class MutableDouble extends Number implements Comparable<MutableDouble>, Mutable<Number> {

src/main/java/org/apache/commons/lang3/mutable/MutableFloat.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,21 @@
1616
*/
1717
package org.apache.commons.lang3.mutable;
1818

19+
import java.util.concurrent.atomic.DoubleAccumulator;
20+
import java.util.concurrent.atomic.DoubleAdder;
21+
1922
/**
2023
* A mutable {@code float} wrapper.
2124
* <p>
25+
* This class was created before the introduction of the the {@link java.util.concurrent.atomic} package and the {@link DoubleAccumulator} class.
26+
* </p>
27+
* <p>
2228
* Note that as MutableFloat does not extend Float, it is not treated by String.format as a Float parameter.
2329
* </p>
2430
*
2531
* @see Float
32+
* @see DoubleAccumulator
33+
* @see DoubleAdder
2634
* @since 2.1
2735
*/
2836
public class MutableFloat extends Number implements Comparable<MutableFloat>, Mutable<Number> {

src/main/java/org/apache/commons/lang3/mutable/MutableInt.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/**
2222
* A mutable {@code int} wrapper.
2323
* <p>
24-
* This class was created before the introduction of {@link AtomicInteger}.
24+
* This class was created before the introduction of the the {@link java.util.concurrent.atomic} package and the {@link AtomicInteger} class.
2525
* </p>
2626
* <p>
2727
* Note that as MutableInt does not extend {@link Integer}, it is not treated by {@link String#format(String, Object...)} as an Integer parameter.

src/main/java/org/apache/commons/lang3/mutable/MutableLong.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/**
2222
* A mutable {@code long} wrapper.
2323
* <p>
24-
* This class was created before the introduction of {@link AtomicLong}.
24+
* This class was created before the introduction of the the {@link java.util.concurrent.atomic} package and the {@link AtomicLong} class.
2525
* </p>
2626
* <p>
2727
* Note that as MutableLong does not extend {@link Long}, it is not treated by {@link String#format(String, Object...)} as a Long parameter.

src/main/java/org/apache/commons/lang3/mutable/MutableObject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/**
2525
* A mutable {@link Object} wrapper.
2626
* <p>
27-
* This class was created before the introduction of {@link AtomicReference}.
27+
* This class was created before the introduction of the the {@link java.util.concurrent.atomic} package and the {@link AtomicReference} class.
2828
* </p>
2929
*
3030
* @param <T> the type to set and get.

src/main/java/org/apache/commons/lang3/mutable/MutableShort.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,19 @@
1616
*/
1717
package org.apache.commons.lang3.mutable;
1818

19+
import java.util.concurrent.atomic.AtomicInteger;
20+
1921
/**
2022
* A mutable {@code short} wrapper.
2123
* <p>
24+
* This class was created before the introduction of the the {@link java.util.concurrent.atomic} package and the {@link AtomicInteger} class.
25+
* </p>
26+
* <p>
2227
* Note that as MutableShort does not extend Short, it is not treated by String.format as a Short parameter.
2328
* </p>
2429
*
2530
* @see Short
31+
* @see AtomicInteger
2632
* @since 2.1
2733
*/
2834
public class MutableShort extends Number implements Comparable<MutableShort>, Mutable<Number> {

0 commit comments

Comments
 (0)