Fixing @links to point to new lang3 package. LANG-563
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@889219 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c6e8f706dc
commit
dc0509f7eb
|
@ -49,14 +49,14 @@ import java.util.Set;
|
||||||
* </p><p>
|
* </p><p>
|
||||||
* The output in a printStacktrace() (which often is written to a log) would look something like the following:
|
* The output in a printStacktrace() (which often is written to a log) would look something like the following:
|
||||||
* <pre>
|
* <pre>
|
||||||
* 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:
|
* Exception Context:
|
||||||
* [accountNumber=null]
|
* [accountNumber=null]
|
||||||
* [amountPosted=100.00]
|
* [amountPosted=100.00]
|
||||||
* [previousBalance=-2.17]
|
* [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)
|
* ..... (rest of trace)
|
||||||
* </pre>
|
* </pre>
|
||||||
* </p>
|
* </p>
|
||||||
|
|
|
@ -49,14 +49,14 @@ import java.util.Set;
|
||||||
* </p><p>
|
* </p><p>
|
||||||
* The output in a printStacktrace() (which often is written to a log) would look something like the following:
|
* The output in a printStacktrace() (which often is written to a log) would look something like the following:
|
||||||
* <pre>
|
* <pre>
|
||||||
* 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:
|
* Exception Context:
|
||||||
* [accountNumber=null]
|
* [accountNumber=null]
|
||||||
* [amountPosted=100.00]
|
* [amountPosted=100.00]
|
||||||
* [previousBalance=-2.17]
|
* [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)
|
* ..... (rest of trace)
|
||||||
* </pre>
|
* </pre>
|
||||||
* </p>
|
* </p>
|
||||||
|
|
|
@ -159,7 +159,7 @@ public class ExceptionUtils {
|
||||||
* the following example:</p>
|
* the following example:</p>
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* import org.apache.commons.lang.exception.ExceptionUtils;
|
* import org.apache.commons.lang3.exception.ExceptionUtils;
|
||||||
*
|
*
|
||||||
* public class MyException extends Exception {
|
* public class MyException extends Exception {
|
||||||
*
|
*
|
||||||
|
|
|
@ -25,7 +25,7 @@ import java.util.TimeZone;
|
||||||
* <p>Date and time formatting utilities and constants.</p>
|
* <p>Date and time formatting utilities and constants.</p>
|
||||||
*
|
*
|
||||||
* <p>Formatting is performed using the
|
* <p>Formatting is performed using the
|
||||||
* {@link org.apache.commons.lang.time.FastDateFormat} class.</p>
|
* {@link org.apache.commons.lang3.time.FastDateFormat} class.</p>
|
||||||
*
|
*
|
||||||
* @author Apache Software Foundation
|
* @author Apache Software Foundation
|
||||||
* @author Apache Ant - DateUtils
|
* @author Apache Ant - DateUtils
|
||||||
|
|
|
@ -62,7 +62,7 @@ public class DurationFormatUtils {
|
||||||
* <p>Pattern used with <code>FastDateFormat</code> and <code>SimpleDateFormat</code>
|
* <p>Pattern used with <code>FastDateFormat</code> and <code>SimpleDateFormat</code>
|
||||||
* for the ISO8601 period format used in durations.</p>
|
* for the ISO8601 period format used in durations.</p>
|
||||||
*
|
*
|
||||||
* @see org.apache.commons.lang.time.FastDateFormat
|
* @see org.apache.commons.lang3.time.FastDateFormat
|
||||||
* @see java.text.SimpleDateFormat
|
* @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'";
|
public static final String ISO_EXTENDED_FORMAT_PATTERN = "'P'yyyy'Y'M'M'd'DT'H'H'm'M's.S'S'";
|
||||||
|
|
|
@ -28,7 +28,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
import junit.textui.TestRunner;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Unit tests {@link org.apache.commons.lang.CalendarUtils}.
|
* Unit tests {@link org.apache.commons.lang3.CalendarUtils}.
|
||||||
*
|
*
|
||||||
* @author <a href="mailto:sergek@lokitech.com">Serge Knystautas</a>
|
* @author <a href="mailto:sergek@lokitech.com">Serge Knystautas</a>
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -28,7 +28,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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 Apache Software Foundation
|
||||||
* @author Moritz Petersen
|
* @author Moritz Petersen
|
||||||
|
|
|
@ -25,7 +25,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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 Apache Software Foundation
|
||||||
* @author Matthew Hawthorne
|
* @author Matthew Hawthorne
|
||||||
|
|
|
@ -26,7 +26,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
import junit.textui.TestRunner;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Unit tests {@link org.apache.commons.lang.CharRange}.
|
* Unit tests {@link org.apache.commons.lang3.CharRange}.
|
||||||
*
|
*
|
||||||
* @author Apache Software Foundation
|
* @author Apache Software Foundation
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
|
|
|
@ -26,7 +26,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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 Apache Software Foundation
|
||||||
* @author Phil Steitz
|
* @author Phil Steitz
|
||||||
|
|
|
@ -25,7 +25,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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 Apache Software Foundation
|
||||||
* @author <a href="mailto:ridesmet@users.sourceforge.net">Ringo De Smet</a>
|
* @author <a href="mailto:ridesmet@users.sourceforge.net">Ringo De Smet</a>
|
||||||
|
|
|
@ -25,7 +25,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
import junit.textui.TestRunner;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Unit tests {@link org.apache.commons.lang.CharUtils}.
|
* Unit tests {@link org.apache.commons.lang3.CharUtils}.
|
||||||
*
|
*
|
||||||
* @author Apache Software Foundation
|
* @author Apache Software Foundation
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
|
|
|
@ -27,7 +27,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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 Apache Software Foundation
|
||||||
* @author <a href="mailto:jmcnally@collab.net">John McNally</a>
|
* @author <a href="mailto:jmcnally@collab.net">John McNally</a>
|
||||||
|
|
|
@ -25,7 +25,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
import junit.textui.TestRunner;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Unit tests {@link org.apache.commons.lang.RandomStringUtils}.
|
* Unit tests {@link org.apache.commons.lang3.RandomStringUtils}.
|
||||||
*
|
*
|
||||||
* @author <a href="mailto:steven@caswell.name">Steven Caswell</a>
|
* @author <a href="mailto:steven@caswell.name">Steven Caswell</a>
|
||||||
* @author <a href="mailto:ridesmet@users.sourceforge.net">Ringo De Smet</a>
|
* @author <a href="mailto:ridesmet@users.sourceforge.net">Ringo De Smet</a>
|
||||||
|
|
|
@ -23,7 +23,7 @@ import junit.framework.TestCase;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>
|
* <p>
|
||||||
* Tests the methods in the {@link org.apache.commons.lang.Range} class.
|
* Tests the methods in the {@link org.apache.commons.lang3.Range} class.
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* @version $Id: RangeTest.java 754804 2009-03-16 02:06:18Z sebb $
|
* @version $Id: RangeTest.java 754804 2009-03-16 02:06:18Z sebb $
|
||||||
|
|
|
@ -34,7 +34,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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 Apache Software Foundation
|
||||||
* @author <a href="mailto:ridesmet@users.sourceforge.net">Ringo De Smet</a>
|
* @author <a href="mailto:ridesmet@users.sourceforge.net">Ringo De Smet</a>
|
||||||
|
|
|
@ -24,7 +24,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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 Apache Software Foundation
|
||||||
* @author <a href="mailto:ridesmet@users.sourceforge.net">Ringo De Smet</a>
|
* @author <a href="mailto:ridesmet@users.sourceforge.net">Ringo De Smet</a>
|
||||||
|
|
|
@ -22,7 +22,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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 Apache Software Foundation
|
||||||
* @author Michael Davey
|
* @author Michael Davey
|
||||||
|
|
|
@ -22,7 +22,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,7 +22,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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 Apache Software Foundation
|
||||||
* @author <a href="mailto:ridesmet@users.sourceforge.net">Ringo De Smet</a>
|
* @author <a href="mailto:ridesmet@users.sourceforge.net">Ringo De Smet</a>
|
||||||
|
|
|
@ -29,7 +29,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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 Apache Software Foundation
|
||||||
* @author Daniel L. Rall
|
* @author Daniel L. Rall
|
||||||
|
|
|
@ -22,7 +22,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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 Apache Software Foundation
|
||||||
* @author <a href="mailto:ridesmet@users.sourceforge.net">Ringo De Smet</a>
|
* @author <a href="mailto:ridesmet@users.sourceforge.net">Ringo De Smet</a>
|
||||||
|
|
|
@ -31,7 +31,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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.
|
* Only limited testing can be performed.
|
||||||
*
|
*
|
||||||
|
|
|
@ -32,7 +32,7 @@ import junit.framework.TestCase;
|
||||||
import junit.framework.TestSuite;
|
import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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 Apache Software Foundation
|
||||||
* @author Norm Deane
|
* @author Norm Deane
|
||||||
|
|
|
@ -24,7 +24,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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 Apache Software Foundation
|
||||||
* @author <a href="mailto:sdowney@panix.com">Steve Downey</a>
|
* @author <a href="mailto:sdowney@panix.com">Steve Downey</a>
|
||||||
|
|
|
@ -27,7 +27,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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
|
* @author Apache Software Foundation
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
|
|
|
@ -24,7 +24,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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 Apache Software Foundation
|
||||||
* @author <a href="mailto:sdowney@panix.com">Steve Downey</a>
|
* @author <a href="mailto:sdowney@panix.com">Steve Downey</a>
|
||||||
|
|
|
@ -22,8 +22,8 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
import junit.textui.TestRunner;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tests {@link org.apache.commons.lang.builder.HashCodeBuilder} and
|
* Tests {@link org.apache.commons.lang3.builder.HashCodeBuilder} and
|
||||||
* {@link org.apache.commons.lang.builder.EqualsBuilderTest} to insure that equal
|
* {@link org.apache.commons.lang3.builder.EqualsBuilderTest} to insure that equal
|
||||||
* objects must have equal hash codes.
|
* objects must have equal hash codes.
|
||||||
*
|
*
|
||||||
* @author Gary Gregory
|
* @author Gary Gregory
|
||||||
|
|
|
@ -23,7 +23,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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
|
* @author Apache Software Foundation
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
|
@ -530,18 +530,18 @@ public class HashCodeBuilderTest extends TestCase {
|
||||||
// java.lang.StackOverflowError
|
// java.lang.StackOverflowError
|
||||||
// at java.lang.ClassLoader.getCallerClassLoader(Native Method)
|
// at java.lang.ClassLoader.getCallerClassLoader(Native Method)
|
||||||
// at java.lang.Class.getDeclaredFields(Class.java:992)
|
// at java.lang.Class.getDeclaredFields(Class.java:992)
|
||||||
// at org.apache.commons.lang.builder.HashCodeBuilder.reflectionAppend(HashCodeBuilder.java:373)
|
// at org.apache.commons.lang3.builder.HashCodeBuilder.reflectionAppend(HashCodeBuilder.java:373)
|
||||||
// at org.apache.commons.lang.builder.HashCodeBuilder.reflectionHashCode(HashCodeBuilder.java:349)
|
// at org.apache.commons.lang3.builder.HashCodeBuilder.reflectionHashCode(HashCodeBuilder.java:349)
|
||||||
// at org.apache.commons.lang.builder.HashCodeBuilder.reflectionHashCode(HashCodeBuilder.java:155)
|
// at org.apache.commons.lang3.builder.HashCodeBuilder.reflectionHashCode(HashCodeBuilder.java:155)
|
||||||
// at
|
// at
|
||||||
// org.apache.commons.lang.builder.HashCodeBuilderTest$ReflectionTestCycleB.hashCode(HashCodeBuilderTest.java:53)
|
// org.apache.commons.lang3.builder.HashCodeBuilderTest$ReflectionTestCycleB.hashCode(HashCodeBuilderTest.java:53)
|
||||||
// at org.apache.commons.lang.builder.HashCodeBuilder.append(HashCodeBuilder.java:422)
|
// at org.apache.commons.lang3.builder.HashCodeBuilder.append(HashCodeBuilder.java:422)
|
||||||
// at org.apache.commons.lang.builder.HashCodeBuilder.reflectionAppend(HashCodeBuilder.java:383)
|
// at org.apache.commons.lang3.builder.HashCodeBuilder.reflectionAppend(HashCodeBuilder.java:383)
|
||||||
// at org.apache.commons.lang.builder.HashCodeBuilder.reflectionHashCode(HashCodeBuilder.java:349)
|
// at org.apache.commons.lang3.builder.HashCodeBuilder.reflectionHashCode(HashCodeBuilder.java:349)
|
||||||
// at org.apache.commons.lang.builder.HashCodeBuilder.reflectionHashCode(HashCodeBuilder.java:155)
|
// at org.apache.commons.lang3.builder.HashCodeBuilder.reflectionHashCode(HashCodeBuilder.java:155)
|
||||||
// at
|
// at
|
||||||
// org.apache.commons.lang.builder.HashCodeBuilderTest$ReflectionTestCycleA.hashCode(HashCodeBuilderTest.java:42)
|
// org.apache.commons.lang3.builder.HashCodeBuilderTest$ReflectionTestCycleA.hashCode(HashCodeBuilderTest.java:42)
|
||||||
// at org.apache.commons.lang.builder.HashCodeBuilder.append(HashCodeBuilder.java:422)
|
// at org.apache.commons.lang3.builder.HashCodeBuilder.append(HashCodeBuilder.java:422)
|
||||||
|
|
||||||
a.hashCode();
|
a.hashCode();
|
||||||
b.hashCode();
|
b.hashCode();
|
||||||
|
|
|
@ -28,7 +28,7 @@ import org.apache.commons.lang3.SystemUtils;
|
||||||
import org.apache.commons.lang3.builder.ToStringStyleTest.Person;
|
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
|
* @author Apache Software Foundation
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
|
|
|
@ -27,7 +27,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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
|
* @author Apache Software Foundation
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
|
|
|
@ -24,7 +24,7 @@ import org.apache.commons.lang3.builder.ToStringStyleTest.Person;
|
||||||
import junit.framework.TestCase;
|
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 <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
|
* @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
|
|
|
@ -27,7 +27,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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
|
* @author Apache Software Foundation
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
|
|
|
@ -27,7 +27,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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
|
* @author Apache Software Foundation
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
|
|
|
@ -26,7 +26,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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 Apache Software Foundation
|
||||||
* @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
|
* @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
|
||||||
|
|
|
@ -35,7 +35,7 @@ import junit.framework.TestSuite;
|
||||||
import org.apache.commons.lang3.SystemUtils;
|
import org.apache.commons.lang3.SystemUtils;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tests {@link org.apache.commons.lang.exception.ExceptionUtils}.
|
* Tests {@link org.apache.commons.lang3.exception.ExceptionUtils}.
|
||||||
*
|
*
|
||||||
* <h3>Notes</h3>
|
* <h3>Notes</h3>
|
||||||
* <p>
|
* <p>
|
||||||
|
|
|
@ -19,7 +19,7 @@ package org.apache.commons.lang3.math;
|
||||||
import junit.framework.TestCase;
|
import junit.framework.TestCase;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Unit tests {@link org.apache.commons.lang.math.IEEE754rUtils}.
|
* Unit tests {@link org.apache.commons.lang3.math.IEEE754rUtils}.
|
||||||
*
|
*
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -29,7 +29,7 @@ import junit.textui.TestRunner;
|
||||||
import org.apache.commons.lang3.SystemUtils;
|
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 Apache Software Foundation
|
||||||
* @author <a href="mailto:rand_mcneely@yahoo.com">Rand McNeely</a>
|
* @author <a href="mailto:rand_mcneely@yahoo.com">Rand McNeely</a>
|
||||||
|
|
|
@ -29,7 +29,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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 {
|
public class CompositeFormatTest extends TestCase {
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@ import junit.textui.TestRunner;
|
||||||
import org.apache.commons.lang3.SystemUtils;
|
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$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -29,7 +29,7 @@ import junit.textui.TestRunner;
|
||||||
import org.apache.commons.lang3.ArrayUtils;
|
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
|
* @author Michael Heuer
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
|
|
|
@ -23,7 +23,7 @@ import junit.framework.TestSuite;
|
||||||
import junit.textui.TestRunner;
|
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$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -20,7 +20,7 @@ package org.apache.commons.lang3.text.translate;
|
||||||
import junit.framework.TestCase;
|
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 {
|
public class EntityArraysTest extends TestCase {
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ import java.io.StringWriter;
|
||||||
import java.io.IOException;
|
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 {
|
public class LookupTranslatorTest extends TestCase {
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ package org.apache.commons.lang3.text.translate;
|
||||||
import junit.framework.TestCase;
|
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 {
|
public class NumericEntityEscaperTest extends TestCase {
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ package org.apache.commons.lang3.text.translate;
|
||||||
import junit.framework.TestCase;
|
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 {
|
public class UnicodeEscaperTest extends TestCase {
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ package org.apache.commons.lang3.text.translate;
|
||||||
import junit.framework.TestCase;
|
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 {
|
public class UnicodeUnescaperTest extends TestCase {
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@ import junit.textui.TestRunner;
|
||||||
import org.apache.commons.lang3.SystemUtils;
|
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 <a href="mailto:sergek@lokitech.com">Serge Knystautas</a>
|
* @author <a href="mailto:sergek@lokitech.com">Serge Knystautas</a>
|
||||||
* @author <a href="mailto:steve@mungoknotwise.com">Steven Caswell</a>
|
* @author <a href="mailto:steve@mungoknotwise.com">Steven Caswell</a>
|
||||||
|
|
|
@ -128,7 +128,7 @@ public class DurationFormatUtilsTest extends TestCase {
|
||||||
// at junit.framework.Assert.assertEquals(Assert.java:81)
|
// at junit.framework.Assert.assertEquals(Assert.java:81)
|
||||||
// at junit.framework.Assert.assertEquals(Assert.java:87)
|
// at junit.framework.Assert.assertEquals(Assert.java:87)
|
||||||
// at
|
// 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.invoke0(Native Method)
|
||||||
// at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
|
// at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
|
||||||
// at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
|
// at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
|
||||||
|
|
|
@ -31,7 +31,7 @@ import junit.textui.TestRunner;
|
||||||
import org.apache.commons.lang3.SerializationUtils;
|
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 Sean Schofield
|
||||||
* @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
|
* @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
|
||||||
|
|
Loading…
Reference in New Issue