From dc0509f7eb4ee8e9a40ca0e9bdcf265485aa3451 Mon Sep 17 00:00:00 2001
From: Henri Yandell
* The output in a printStacktrace() (which often is written to a log) would look something like the following: *
- * org.apache.commons.lang.exception.ContextedException: java.lang.Exception: Error posting account transaction + * org.apache.commons.lang3.exception.ContextedException: java.lang.Exception: Error posting account transaction * Exception Context: * [accountNumber=null] * [amountPosted=100.00] * [previousBalance=-2.17] * * --------------------------------- - * at org.apache.commons.lang.exception.ContextedExceptionTest.testAddValue(ContextedExceptionTest.java:88) + * at org.apache.commons.lang3.exception.ContextedExceptionTest.testAddValue(ContextedExceptionTest.java:88) * ..... (rest of trace) ** diff --git a/src/java/org/apache/commons/lang3/exception/ContextedRuntimeException.java b/src/java/org/apache/commons/lang3/exception/ContextedRuntimeException.java index fca8d19f3..23d9c6f25 100644 --- a/src/java/org/apache/commons/lang3/exception/ContextedRuntimeException.java +++ b/src/java/org/apache/commons/lang3/exception/ContextedRuntimeException.java @@ -49,14 +49,14 @@ import java.util.Set; *
* The output in a printStacktrace() (which often is written to a log) would look something like the following: *
- * org.apache.commons.lang.exception.ContextedRuntimeException: java.lang.Exception: Error posting account transaction + * org.apache.commons.lang3.exception.ContextedRuntimeException: java.lang.Exception: Error posting account transaction * Exception Context: * [accountNumber=null] * [amountPosted=100.00] * [previousBalance=-2.17] * * --------------------------------- - * at org.apache.commons.lang.exception.ContextedRuntimeExceptionTest.testAddValue(ContextedExceptionTest.java:88) + * at org.apache.commons.lang3.exception.ContextedRuntimeExceptionTest.testAddValue(ContextedExceptionTest.java:88) * ..... (rest of trace) ** diff --git a/src/java/org/apache/commons/lang3/exception/ExceptionUtils.java b/src/java/org/apache/commons/lang3/exception/ExceptionUtils.java index 43defd966..f82712eee 100644 --- a/src/java/org/apache/commons/lang3/exception/ExceptionUtils.java +++ b/src/java/org/apache/commons/lang3/exception/ExceptionUtils.java @@ -159,7 +159,7 @@ public class ExceptionUtils { * the following example: * *
- * import org.apache.commons.lang.exception.ExceptionUtils; + * import org.apache.commons.lang3.exception.ExceptionUtils; * * public class MyException extends Exception { * diff --git a/src/java/org/apache/commons/lang3/time/DateFormatUtils.java b/src/java/org/apache/commons/lang3/time/DateFormatUtils.java index 227904165..2a01f3091 100644 --- a/src/java/org/apache/commons/lang3/time/DateFormatUtils.java +++ b/src/java/org/apache/commons/lang3/time/DateFormatUtils.java @@ -25,7 +25,7 @@ import java.util.TimeZone; *Date and time formatting utilities and constants.
* *Formatting is performed using the - * {@link org.apache.commons.lang.time.FastDateFormat} class.
+ * {@link org.apache.commons.lang3.time.FastDateFormat} class. * * @author Apache Software Foundation * @author Apache Ant - DateUtils diff --git a/src/java/org/apache/commons/lang3/time/DurationFormatUtils.java b/src/java/org/apache/commons/lang3/time/DurationFormatUtils.java index 2664cb157..64e603126 100644 --- a/src/java/org/apache/commons/lang3/time/DurationFormatUtils.java +++ b/src/java/org/apache/commons/lang3/time/DurationFormatUtils.java @@ -62,7 +62,7 @@ public class DurationFormatUtils { *Pattern used with
* - * @see org.apache.commons.lang.time.FastDateFormat + * @see org.apache.commons.lang3.time.FastDateFormat * @see java.text.SimpleDateFormat */ public static final String ISO_EXTENDED_FORMAT_PATTERN = "'P'yyyy'Y'M'M'd'DT'H'H'm'M's.S'S'"; diff --git a/src/pending/CalendarUtilsTest.java b/src/pending/CalendarUtilsTest.java index e658b3536..3a1ea38d8 100644 --- a/src/pending/CalendarUtilsTest.java +++ b/src/pending/CalendarUtilsTest.java @@ -28,7 +28,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.CalendarUtils}. + * Unit tests {@link org.apache.commons.lang3.CalendarUtils}. * * @author Serge Knystautas */ diff --git a/src/test/org/apache/commons/lang3/ArrayUtilsTest.java b/src/test/org/apache/commons/lang3/ArrayUtilsTest.java index e5126b99b..b3b8ea2ea 100644 --- a/src/test/org/apache/commons/lang3/ArrayUtilsTest.java +++ b/src/test/org/apache/commons/lang3/ArrayUtilsTest.java @@ -28,7 +28,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.ArrayUtils}. + * Unit tests {@link org.apache.commons.lang3.ArrayUtils}. * * @author Apache Software Foundation * @author Moritz Petersen diff --git a/src/test/org/apache/commons/lang3/BooleanUtilsTest.java b/src/test/org/apache/commons/lang3/BooleanUtilsTest.java index 04ae92dce..a8462f3e7 100644 --- a/src/test/org/apache/commons/lang3/BooleanUtilsTest.java +++ b/src/test/org/apache/commons/lang3/BooleanUtilsTest.java @@ -25,7 +25,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.BooleanUtils}. + * Unit tests {@link org.apache.commons.lang3.BooleanUtils}. * * @author Apache Software Foundation * @author Matthew Hawthorne diff --git a/src/test/org/apache/commons/lang3/CharRangeTest.java b/src/test/org/apache/commons/lang3/CharRangeTest.java index d4e772967..4a5bfbab7 100644 --- a/src/test/org/apache/commons/lang3/CharRangeTest.java +++ b/src/test/org/apache/commons/lang3/CharRangeTest.java @@ -26,7 +26,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.CharRange}. + * Unit tests {@link org.apache.commons.lang3.CharRange}. * * @author Apache Software Foundation * @version $Id$ diff --git a/src/test/org/apache/commons/lang3/CharSetTest.java b/src/test/org/apache/commons/lang3/CharSetTest.java index 51ef6b5b3..546f74c5b 100644 --- a/src/test/org/apache/commons/lang3/CharSetTest.java +++ b/src/test/org/apache/commons/lang3/CharSetTest.java @@ -26,7 +26,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.CharSet}. + * Unit tests {@link org.apache.commons.lang3.CharSet}. * * @author Apache Software Foundation * @author Phil Steitz diff --git a/src/test/org/apache/commons/lang3/CharSetUtilsTest.java b/src/test/org/apache/commons/lang3/CharSetUtilsTest.java index 218bc11aa..17e8caf8b 100644 --- a/src/test/org/apache/commons/lang3/CharSetUtilsTest.java +++ b/src/test/org/apache/commons/lang3/CharSetUtilsTest.java @@ -25,7 +25,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.CharSetUtils}. + * Unit tests {@link org.apache.commons.lang3.CharSetUtils}. * * @author Apache Software Foundation * @author Ringo De Smet diff --git a/src/test/org/apache/commons/lang3/CharUtilsTest.java b/src/test/org/apache/commons/lang3/CharUtilsTest.java index a293577ef..1a87e3720 100644 --- a/src/test/org/apache/commons/lang3/CharUtilsTest.java +++ b/src/test/org/apache/commons/lang3/CharUtilsTest.java @@ -25,7 +25,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.CharUtils}. + * Unit tests {@link org.apache.commons.lang3.CharUtils}. * * @author Apache Software Foundation * @version $Id$ diff --git a/src/test/org/apache/commons/lang3/ObjectUtilsTest.java b/src/test/org/apache/commons/lang3/ObjectUtilsTest.java index 5b643ab1e..b60402e81 100644 --- a/src/test/org/apache/commons/lang3/ObjectUtilsTest.java +++ b/src/test/org/apache/commons/lang3/ObjectUtilsTest.java @@ -27,7 +27,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.ObjectUtils}. + * Unit tests {@link org.apache.commons.lang3.ObjectUtils}. * * @author Apache Software Foundation * @author John McNally diff --git a/src/test/org/apache/commons/lang3/RandomStringUtilsTest.java b/src/test/org/apache/commons/lang3/RandomStringUtilsTest.java index c5109a619..c7d729ba0 100644 --- a/src/test/org/apache/commons/lang3/RandomStringUtilsTest.java +++ b/src/test/org/apache/commons/lang3/RandomStringUtilsTest.java @@ -25,7 +25,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.RandomStringUtils}. + * Unit tests {@link org.apache.commons.lang3.RandomStringUtils}. * * @author Steven Caswell * @author Ringo De Smet diff --git a/src/test/org/apache/commons/lang3/RangeTest.java b/src/test/org/apache/commons/lang3/RangeTest.java index f3859628c..1e0afa4f7 100644 --- a/src/test/org/apache/commons/lang3/RangeTest.java +++ b/src/test/org/apache/commons/lang3/RangeTest.java @@ -23,7 +23,7 @@ import junit.framework.TestCase; /** *FastDateFormat
andSimpleDateFormat
* for the ISO8601 period format used in durations.- * Tests the methods in the {@link org.apache.commons.lang.Range} class. + * Tests the methods in the {@link org.apache.commons.lang3.Range} class. *
* * @version $Id: RangeTest.java 754804 2009-03-16 02:06:18Z sebb $ diff --git a/src/test/org/apache/commons/lang3/SerializationUtilsTest.java b/src/test/org/apache/commons/lang3/SerializationUtilsTest.java index 1d6366d87..c425cfc14 100644 --- a/src/test/org/apache/commons/lang3/SerializationUtilsTest.java +++ b/src/test/org/apache/commons/lang3/SerializationUtilsTest.java @@ -34,7 +34,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.SerializationUtils}. + * Unit tests {@link org.apache.commons.lang3.SerializationUtils}. * * @author Apache Software Foundation * @author Ringo De Smet diff --git a/src/test/org/apache/commons/lang3/StringUtilsEqualsIndexOfTest.java b/src/test/org/apache/commons/lang3/StringUtilsEqualsIndexOfTest.java index 0ba946ef4..913ac384a 100644 --- a/src/test/org/apache/commons/lang3/StringUtilsEqualsIndexOfTest.java +++ b/src/test/org/apache/commons/lang3/StringUtilsEqualsIndexOfTest.java @@ -24,7 +24,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.StringUtils} - Substring methods + * Unit tests {@link org.apache.commons.lang3.StringUtils} - Substring methods * * @author Apache Software Foundation * @author Ringo De Smet diff --git a/src/test/org/apache/commons/lang3/StringUtilsIsTest.java b/src/test/org/apache/commons/lang3/StringUtilsIsTest.java index 45d71a7f8..85457afb0 100644 --- a/src/test/org/apache/commons/lang3/StringUtilsIsTest.java +++ b/src/test/org/apache/commons/lang3/StringUtilsIsTest.java @@ -22,7 +22,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.StringUtils} - Substring methods + * Unit tests {@link org.apache.commons.lang3.StringUtils} - Substring methods * * @author Apache Software Foundation * @author Michael Davey diff --git a/src/test/org/apache/commons/lang3/StringUtilsStartsEndsWithTest.java b/src/test/org/apache/commons/lang3/StringUtilsStartsEndsWithTest.java index 1fafba971..da98687d9 100644 --- a/src/test/org/apache/commons/lang3/StringUtilsStartsEndsWithTest.java +++ b/src/test/org/apache/commons/lang3/StringUtilsStartsEndsWithTest.java @@ -22,7 +22,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.StringUtils} - StartsWith/EndsWith methods + * Unit tests {@link org.apache.commons.lang3.StringUtils} - StartsWith/EndsWith methods * * @version $Id$ */ diff --git a/src/test/org/apache/commons/lang3/StringUtilsSubstringTest.java b/src/test/org/apache/commons/lang3/StringUtilsSubstringTest.java index 7f6e272e6..abc19c728 100644 --- a/src/test/org/apache/commons/lang3/StringUtilsSubstringTest.java +++ b/src/test/org/apache/commons/lang3/StringUtilsSubstringTest.java @@ -22,7 +22,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.StringUtils} - Substring methods + * Unit tests {@link org.apache.commons.lang3.StringUtils} - Substring methods * * @author Apache Software Foundation * @author Ringo De Smet diff --git a/src/test/org/apache/commons/lang3/StringUtilsTest.java b/src/test/org/apache/commons/lang3/StringUtilsTest.java index e99db8c8d..cc715d8c7 100644 --- a/src/test/org/apache/commons/lang3/StringUtilsTest.java +++ b/src/test/org/apache/commons/lang3/StringUtilsTest.java @@ -29,7 +29,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.StringUtils}. + * Unit tests {@link org.apache.commons.lang3.StringUtils}. * * @author Apache Software Foundation * @author Daniel L. Rall diff --git a/src/test/org/apache/commons/lang3/StringUtilsTrimEmptyTest.java b/src/test/org/apache/commons/lang3/StringUtilsTrimEmptyTest.java index c17794e1e..56849041a 100644 --- a/src/test/org/apache/commons/lang3/StringUtilsTrimEmptyTest.java +++ b/src/test/org/apache/commons/lang3/StringUtilsTrimEmptyTest.java @@ -22,7 +22,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.StringUtils} - Trim/Empty methods + * Unit tests {@link org.apache.commons.lang3.StringUtils} - Trim/Empty methods * * @author Apache Software Foundation * @author Ringo De Smet diff --git a/src/test/org/apache/commons/lang3/SystemUtilsTest.java b/src/test/org/apache/commons/lang3/SystemUtilsTest.java index 71dfd7724..8117b55da 100644 --- a/src/test/org/apache/commons/lang3/SystemUtilsTest.java +++ b/src/test/org/apache/commons/lang3/SystemUtilsTest.java @@ -31,7 +31,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.SystemUtils}. + * Unit tests {@link org.apache.commons.lang3.SystemUtils}. * * Only limited testing can be performed. * diff --git a/src/test/org/apache/commons/lang3/ValidateTest.java b/src/test/org/apache/commons/lang3/ValidateTest.java index e45ad36b9..617379e29 100644 --- a/src/test/org/apache/commons/lang3/ValidateTest.java +++ b/src/test/org/apache/commons/lang3/ValidateTest.java @@ -32,7 +32,7 @@ import junit.framework.TestCase; import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.Validate}. + * Unit tests {@link org.apache.commons.lang3.Validate}. * * @author Apache Software Foundation * @author Norm Deane diff --git a/src/test/org/apache/commons/lang3/builder/CompareToBuilderTest.java b/src/test/org/apache/commons/lang3/builder/CompareToBuilderTest.java index 53fc7d89c..bc23dad6c 100644 --- a/src/test/org/apache/commons/lang3/builder/CompareToBuilderTest.java +++ b/src/test/org/apache/commons/lang3/builder/CompareToBuilderTest.java @@ -24,7 +24,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.builder.CompareToBuilder}. + * Unit tests {@link org.apache.commons.lang3.builder.CompareToBuilder}. * * @author Apache Software Foundation * @author Steve Downey diff --git a/src/test/org/apache/commons/lang3/builder/DefaultToStringStyleTest.java b/src/test/org/apache/commons/lang3/builder/DefaultToStringStyleTest.java index 3f363f2d0..b276fdb5b 100644 --- a/src/test/org/apache/commons/lang3/builder/DefaultToStringStyleTest.java +++ b/src/test/org/apache/commons/lang3/builder/DefaultToStringStyleTest.java @@ -27,7 +27,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.builder.DefaultToStringStyleTest}. + * Unit tests {@link org.apache.commons.lang3.builder.DefaultToStringStyleTest}. * * @author Apache Software Foundation * @version $Id$ diff --git a/src/test/org/apache/commons/lang3/builder/EqualsBuilderTest.java b/src/test/org/apache/commons/lang3/builder/EqualsBuilderTest.java index 73c015513..128987190 100644 --- a/src/test/org/apache/commons/lang3/builder/EqualsBuilderTest.java +++ b/src/test/org/apache/commons/lang3/builder/EqualsBuilderTest.java @@ -24,7 +24,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.builder.EqualsBuilder}. + * Unit tests {@link org.apache.commons.lang3.builder.EqualsBuilder}. * * @author Apache Software Foundation * @author Steve Downey diff --git a/src/test/org/apache/commons/lang3/builder/HashCodeBuilderAndEqualsBuilderTest.java b/src/test/org/apache/commons/lang3/builder/HashCodeBuilderAndEqualsBuilderTest.java index 8fc8ab200..30c418b79 100644 --- a/src/test/org/apache/commons/lang3/builder/HashCodeBuilderAndEqualsBuilderTest.java +++ b/src/test/org/apache/commons/lang3/builder/HashCodeBuilderAndEqualsBuilderTest.java @@ -22,8 +22,8 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Tests {@link org.apache.commons.lang.builder.HashCodeBuilder} and - * {@link org.apache.commons.lang.builder.EqualsBuilderTest} to insure that equal + * Tests {@link org.apache.commons.lang3.builder.HashCodeBuilder} and + * {@link org.apache.commons.lang3.builder.EqualsBuilderTest} to insure that equal * objects must have equal hash codes. * * @author Gary Gregory diff --git a/src/test/org/apache/commons/lang3/builder/HashCodeBuilderTest.java b/src/test/org/apache/commons/lang3/builder/HashCodeBuilderTest.java index fbae075bb..2ffb343bb 100644 --- a/src/test/org/apache/commons/lang3/builder/HashCodeBuilderTest.java +++ b/src/test/org/apache/commons/lang3/builder/HashCodeBuilderTest.java @@ -23,7 +23,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.builder.HashCodeBuilder}. + * Unit tests {@link org.apache.commons.lang3.builder.HashCodeBuilder}. * * @author Apache Software Foundation * @version $Id$ @@ -530,18 +530,18 @@ public class HashCodeBuilderTest extends TestCase { // java.lang.StackOverflowError // at java.lang.ClassLoader.getCallerClassLoader(Native Method) // at java.lang.Class.getDeclaredFields(Class.java:992) - // at org.apache.commons.lang.builder.HashCodeBuilder.reflectionAppend(HashCodeBuilder.java:373) - // at org.apache.commons.lang.builder.HashCodeBuilder.reflectionHashCode(HashCodeBuilder.java:349) - // at org.apache.commons.lang.builder.HashCodeBuilder.reflectionHashCode(HashCodeBuilder.java:155) + // at org.apache.commons.lang3.builder.HashCodeBuilder.reflectionAppend(HashCodeBuilder.java:373) + // at org.apache.commons.lang3.builder.HashCodeBuilder.reflectionHashCode(HashCodeBuilder.java:349) + // at org.apache.commons.lang3.builder.HashCodeBuilder.reflectionHashCode(HashCodeBuilder.java:155) // at - // org.apache.commons.lang.builder.HashCodeBuilderTest$ReflectionTestCycleB.hashCode(HashCodeBuilderTest.java:53) - // at org.apache.commons.lang.builder.HashCodeBuilder.append(HashCodeBuilder.java:422) - // at org.apache.commons.lang.builder.HashCodeBuilder.reflectionAppend(HashCodeBuilder.java:383) - // at org.apache.commons.lang.builder.HashCodeBuilder.reflectionHashCode(HashCodeBuilder.java:349) - // at org.apache.commons.lang.builder.HashCodeBuilder.reflectionHashCode(HashCodeBuilder.java:155) + // org.apache.commons.lang3.builder.HashCodeBuilderTest$ReflectionTestCycleB.hashCode(HashCodeBuilderTest.java:53) + // at org.apache.commons.lang3.builder.HashCodeBuilder.append(HashCodeBuilder.java:422) + // at org.apache.commons.lang3.builder.HashCodeBuilder.reflectionAppend(HashCodeBuilder.java:383) + // at org.apache.commons.lang3.builder.HashCodeBuilder.reflectionHashCode(HashCodeBuilder.java:349) + // at org.apache.commons.lang3.builder.HashCodeBuilder.reflectionHashCode(HashCodeBuilder.java:155) // at - // org.apache.commons.lang.builder.HashCodeBuilderTest$ReflectionTestCycleA.hashCode(HashCodeBuilderTest.java:42) - // at org.apache.commons.lang.builder.HashCodeBuilder.append(HashCodeBuilder.java:422) + // org.apache.commons.lang3.builder.HashCodeBuilderTest$ReflectionTestCycleA.hashCode(HashCodeBuilderTest.java:42) + // at org.apache.commons.lang3.builder.HashCodeBuilder.append(HashCodeBuilder.java:422) a.hashCode(); b.hashCode(); diff --git a/src/test/org/apache/commons/lang3/builder/MultiLineToStringStyleTest.java b/src/test/org/apache/commons/lang3/builder/MultiLineToStringStyleTest.java index 72ba90ac2..ed930caab 100644 --- a/src/test/org/apache/commons/lang3/builder/MultiLineToStringStyleTest.java +++ b/src/test/org/apache/commons/lang3/builder/MultiLineToStringStyleTest.java @@ -28,7 +28,7 @@ import org.apache.commons.lang3.SystemUtils; import org.apache.commons.lang3.builder.ToStringStyleTest.Person; /** - * Unit tests {@link org.apache.commons.lang.builder.MultiLineToStringStyleTest}. + * Unit tests {@link org.apache.commons.lang3.builder.MultiLineToStringStyleTest}. * * @author Apache Software Foundation * @version $Id$ diff --git a/src/test/org/apache/commons/lang3/builder/NoFieldNamesToStringStyleTest.java b/src/test/org/apache/commons/lang3/builder/NoFieldNamesToStringStyleTest.java index 04a353e52..afeb7664c 100644 --- a/src/test/org/apache/commons/lang3/builder/NoFieldNamesToStringStyleTest.java +++ b/src/test/org/apache/commons/lang3/builder/NoFieldNamesToStringStyleTest.java @@ -27,7 +27,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.builder.NoFieldNamesToStringStyleTest}. + * Unit tests {@link org.apache.commons.lang3.builder.NoFieldNamesToStringStyleTest}. * * @author Apache Software Foundation * @version $Id$ diff --git a/src/test/org/apache/commons/lang3/builder/ShortPrefixToStringStyleTest.java b/src/test/org/apache/commons/lang3/builder/ShortPrefixToStringStyleTest.java index 027ac388a..430681d8a 100644 --- a/src/test/org/apache/commons/lang3/builder/ShortPrefixToStringStyleTest.java +++ b/src/test/org/apache/commons/lang3/builder/ShortPrefixToStringStyleTest.java @@ -24,7 +24,7 @@ import org.apache.commons.lang3.builder.ToStringStyleTest.Person; import junit.framework.TestCase; /** - * Unit tests {@link org.apache.commons.lang.builder.ToStringStyle#SHORT_PREFIX_STYLE}. + * Unit tests {@link org.apache.commons.lang3.builder.ToStringStyle#SHORT_PREFIX_STYLE}. * * @author Gary Gregory * @version $Id$ diff --git a/src/test/org/apache/commons/lang3/builder/SimpleToStringStyleTest.java b/src/test/org/apache/commons/lang3/builder/SimpleToStringStyleTest.java index 65c3a2df6..9093c79bd 100644 --- a/src/test/org/apache/commons/lang3/builder/SimpleToStringStyleTest.java +++ b/src/test/org/apache/commons/lang3/builder/SimpleToStringStyleTest.java @@ -27,7 +27,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.builder.SimpleToStringStyleTest}. + * Unit tests {@link org.apache.commons.lang3.builder.SimpleToStringStyleTest}. * * @author Apache Software Foundation * @version $Id$ diff --git a/src/test/org/apache/commons/lang3/builder/StandardToStringStyleTest.java b/src/test/org/apache/commons/lang3/builder/StandardToStringStyleTest.java index 1d94590de..dba5596a3 100644 --- a/src/test/org/apache/commons/lang3/builder/StandardToStringStyleTest.java +++ b/src/test/org/apache/commons/lang3/builder/StandardToStringStyleTest.java @@ -27,7 +27,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests {@link org.apache.commons.lang.builder.ToStringStyle}. + * Unit tests {@link org.apache.commons.lang3.builder.ToStringStyle}. * * @author Apache Software Foundation * @version $Id$ diff --git a/src/test/org/apache/commons/lang3/builder/ToStringBuilderTest.java b/src/test/org/apache/commons/lang3/builder/ToStringBuilderTest.java index 3e4b997c4..a16a045e7 100644 --- a/src/test/org/apache/commons/lang3/builder/ToStringBuilderTest.java +++ b/src/test/org/apache/commons/lang3/builder/ToStringBuilderTest.java @@ -26,7 +26,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests for {@link org.apache.commons.lang.builder.ToStringBuilder}. + * Unit tests for {@link org.apache.commons.lang3.builder.ToStringBuilder}. * * @author Apache Software Foundation * @author Gary Gregory diff --git a/src/test/org/apache/commons/lang3/exception/ExceptionUtilsTest.java b/src/test/org/apache/commons/lang3/exception/ExceptionUtilsTest.java index b63d74e99..533ee2210 100644 --- a/src/test/org/apache/commons/lang3/exception/ExceptionUtilsTest.java +++ b/src/test/org/apache/commons/lang3/exception/ExceptionUtilsTest.java @@ -35,7 +35,7 @@ import junit.framework.TestSuite; import org.apache.commons.lang3.SystemUtils; /** - * Tests {@link org.apache.commons.lang.exception.ExceptionUtils}. + * Tests {@link org.apache.commons.lang3.exception.ExceptionUtils}. * *Notes
*diff --git a/src/test/org/apache/commons/lang3/math/IEEE754rUtilsTest.java b/src/test/org/apache/commons/lang3/math/IEEE754rUtilsTest.java index 62215bb92..9c5d9e47b 100644 --- a/src/test/org/apache/commons/lang3/math/IEEE754rUtilsTest.java +++ b/src/test/org/apache/commons/lang3/math/IEEE754rUtilsTest.java @@ -19,7 +19,7 @@ package org.apache.commons.lang3.math; import junit.framework.TestCase; /** - * Unit tests {@link org.apache.commons.lang.math.IEEE754rUtils}. + * Unit tests {@link org.apache.commons.lang3.math.IEEE754rUtils}. * * @version $Id$ */ diff --git a/src/test/org/apache/commons/lang3/math/NumberUtilsTest.java b/src/test/org/apache/commons/lang3/math/NumberUtilsTest.java index 71321284b..85765f107 100644 --- a/src/test/org/apache/commons/lang3/math/NumberUtilsTest.java +++ b/src/test/org/apache/commons/lang3/math/NumberUtilsTest.java @@ -29,7 +29,7 @@ import junit.textui.TestRunner; import org.apache.commons.lang3.SystemUtils; /** - * Unit tests {@link org.apache.commons.lang.math.NumberUtils}. + * Unit tests {@link org.apache.commons.lang3.math.NumberUtils}. * * @author Apache Software Foundation * @author Rand McNeely diff --git a/src/test/org/apache/commons/lang3/text/CompositeFormatTest.java b/src/test/org/apache/commons/lang3/text/CompositeFormatTest.java index 9d7e6cc83..1b21f22f2 100644 --- a/src/test/org/apache/commons/lang3/text/CompositeFormatTest.java +++ b/src/test/org/apache/commons/lang3/text/CompositeFormatTest.java @@ -29,7 +29,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests for {@link org.apache.commons.lang.text.CompositeFormat}. + * Unit tests for {@link org.apache.commons.lang3.text.CompositeFormat}. */ public class CompositeFormatTest extends TestCase { diff --git a/src/test/org/apache/commons/lang3/text/StrBuilderAppendInsertTest.java b/src/test/org/apache/commons/lang3/text/StrBuilderAppendInsertTest.java index de2000a5e..dfa9385a6 100644 --- a/src/test/org/apache/commons/lang3/text/StrBuilderAppendInsertTest.java +++ b/src/test/org/apache/commons/lang3/text/StrBuilderAppendInsertTest.java @@ -30,7 +30,7 @@ import junit.textui.TestRunner; import org.apache.commons.lang3.SystemUtils; /** - * Unit tests for {@link org.apache.commons.lang.text.StrBuilder}. + * Unit tests for {@link org.apache.commons.lang3.text.StrBuilder}. * * @version $Id$ */ diff --git a/src/test/org/apache/commons/lang3/text/StrBuilderTest.java b/src/test/org/apache/commons/lang3/text/StrBuilderTest.java index 539ab13ac..c5146f192 100644 --- a/src/test/org/apache/commons/lang3/text/StrBuilderTest.java +++ b/src/test/org/apache/commons/lang3/text/StrBuilderTest.java @@ -29,7 +29,7 @@ import junit.textui.TestRunner; import org.apache.commons.lang3.ArrayUtils; /** - * Unit tests for {@link org.apache.commons.lang.text.StrBuilder}. + * Unit tests for {@link org.apache.commons.lang3.text.StrBuilder}. * * @author Michael Heuer * @version $Id$ diff --git a/src/test/org/apache/commons/lang3/text/StrMatcherTest.java b/src/test/org/apache/commons/lang3/text/StrMatcherTest.java index 03c61e12d..08fc27c2e 100644 --- a/src/test/org/apache/commons/lang3/text/StrMatcherTest.java +++ b/src/test/org/apache/commons/lang3/text/StrMatcherTest.java @@ -23,7 +23,7 @@ import junit.framework.TestSuite; import junit.textui.TestRunner; /** - * Unit tests for {@link org.apache.commons.lang.text.StrMatcher}. + * Unit tests for {@link org.apache.commons.lang3.text.StrMatcher}. * * @version $Id$ */ diff --git a/src/test/org/apache/commons/lang3/text/translate/EntityArraysTest.java b/src/test/org/apache/commons/lang3/text/translate/EntityArraysTest.java index e8b37031b..12afe6a72 100644 --- a/src/test/org/apache/commons/lang3/text/translate/EntityArraysTest.java +++ b/src/test/org/apache/commons/lang3/text/translate/EntityArraysTest.java @@ -20,7 +20,7 @@ package org.apache.commons.lang3.text.translate; import junit.framework.TestCase; /** - * Unit tests for {@link org.apache.commons.lang.text.translate.EntityArrays}. + * Unit tests for {@link org.apache.commons.lang3.text.translate.EntityArrays}. */ public class EntityArraysTest extends TestCase { diff --git a/src/test/org/apache/commons/lang3/text/translate/LookupTranslatorTest.java b/src/test/org/apache/commons/lang3/text/translate/LookupTranslatorTest.java index a89be3e30..dfcaa1660 100644 --- a/src/test/org/apache/commons/lang3/text/translate/LookupTranslatorTest.java +++ b/src/test/org/apache/commons/lang3/text/translate/LookupTranslatorTest.java @@ -23,7 +23,7 @@ import java.io.StringWriter; import java.io.IOException; /** - * Unit tests for {@link org.apache.commons.lang.text.translate.LookupTranslator}. + * Unit tests for {@link org.apache.commons.lang3.text.translate.LookupTranslator}. */ public class LookupTranslatorTest extends TestCase { diff --git a/src/test/org/apache/commons/lang3/text/translate/NumericEntityEscaperTest.java b/src/test/org/apache/commons/lang3/text/translate/NumericEntityEscaperTest.java index 3e46c84ad..4ad44831f 100644 --- a/src/test/org/apache/commons/lang3/text/translate/NumericEntityEscaperTest.java +++ b/src/test/org/apache/commons/lang3/text/translate/NumericEntityEscaperTest.java @@ -20,7 +20,7 @@ package org.apache.commons.lang3.text.translate; import junit.framework.TestCase; /** - * Unit tests for {@link org.apache.commons.lang.text.translate.NumericEntityEscaper}. + * Unit tests for {@link org.apache.commons.lang3.text.translate.NumericEntityEscaper}. */ public class NumericEntityEscaperTest extends TestCase { diff --git a/src/test/org/apache/commons/lang3/text/translate/UnicodeEscaperTest.java b/src/test/org/apache/commons/lang3/text/translate/UnicodeEscaperTest.java index 46366c787..72b01b503 100644 --- a/src/test/org/apache/commons/lang3/text/translate/UnicodeEscaperTest.java +++ b/src/test/org/apache/commons/lang3/text/translate/UnicodeEscaperTest.java @@ -20,7 +20,7 @@ package org.apache.commons.lang3.text.translate; import junit.framework.TestCase; /** - * Unit tests for {@link org.apache.commons.lang.text.translate.UnicodeEscaper}. + * Unit tests for {@link org.apache.commons.lang3.text.translate.UnicodeEscaper}. */ public class UnicodeEscaperTest extends TestCase { diff --git a/src/test/org/apache/commons/lang3/text/translate/UnicodeUnescaperTest.java b/src/test/org/apache/commons/lang3/text/translate/UnicodeUnescaperTest.java index e882440b9..1381150d2 100644 --- a/src/test/org/apache/commons/lang3/text/translate/UnicodeUnescaperTest.java +++ b/src/test/org/apache/commons/lang3/text/translate/UnicodeUnescaperTest.java @@ -20,7 +20,7 @@ package org.apache.commons.lang3.text.translate; import junit.framework.TestCase; /** - * Unit tests for {@link org.apache.commons.lang.text.translate.UnicodeEscaper}. + * Unit tests for {@link org.apache.commons.lang3.text.translate.UnicodeEscaper}. */ public class UnicodeUnescaperTest extends TestCase { diff --git a/src/test/org/apache/commons/lang3/time/DateUtilsTest.java b/src/test/org/apache/commons/lang3/time/DateUtilsTest.java index d7fdd039b..c742db20c 100644 --- a/src/test/org/apache/commons/lang3/time/DateUtilsTest.java +++ b/src/test/org/apache/commons/lang3/time/DateUtilsTest.java @@ -38,7 +38,7 @@ import junit.textui.TestRunner; import org.apache.commons.lang3.SystemUtils; /** - * Unit tests {@link org.apache.commons.lang.time.DateUtils}. + * Unit tests {@link org.apache.commons.lang3.time.DateUtils}. * * @author Serge Knystautas * @author Steven Caswell diff --git a/src/test/org/apache/commons/lang3/time/DurationFormatUtilsTest.java b/src/test/org/apache/commons/lang3/time/DurationFormatUtilsTest.java index 2627fc178..606ffeede 100644 --- a/src/test/org/apache/commons/lang3/time/DurationFormatUtilsTest.java +++ b/src/test/org/apache/commons/lang3/time/DurationFormatUtilsTest.java @@ -128,7 +128,7 @@ public class DurationFormatUtilsTest extends TestCase { // at junit.framework.Assert.assertEquals(Assert.java:81) // at junit.framework.Assert.assertEquals(Assert.java:87) // at - // org.apache.commons.lang.time.DurationFormatUtilsTest.testFormatDurationWords(DurationFormatUtilsTest.java:124) + // org.apache.commons.lang3.time.DurationFormatUtilsTest.testFormatDurationWords(DurationFormatUtilsTest.java:124) // at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) // at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) // at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) diff --git a/src/test/org/apache/commons/lang3/time/FastDateFormatTest.java b/src/test/org/apache/commons/lang3/time/FastDateFormatTest.java index c5d803eb0..32bed7fe3 100644 --- a/src/test/org/apache/commons/lang3/time/FastDateFormatTest.java +++ b/src/test/org/apache/commons/lang3/time/FastDateFormatTest.java @@ -31,7 +31,7 @@ import junit.textui.TestRunner; import org.apache.commons.lang3.SerializationUtils; /** - * Unit tests {@link org.apache.commons.lang.time.FastDateFormat}. + * Unit tests {@link org.apache.commons.lang3.time.FastDateFormat}. * * @author Sean Schofield * @author Gary Gregory