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:
Henri Yandell 2009-12-10 12:02:50 +00:00
parent c6e8f706dc
commit dc0509f7eb
50 changed files with 63 additions and 63 deletions

View File

@ -49,14 +49,14 @@ import java.util.Set;
* </p><p>
* The output in a printStacktrace() (which often is written to a log) would look something like the following:
* <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:
* [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)
* </pre>
* </p>

View File

@ -49,14 +49,14 @@ import java.util.Set;
* </p><p>
* The output in a printStacktrace() (which often is written to a log) would look something like the following:
* <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:
* [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)
* </pre>
* </p>

View File

@ -159,7 +159,7 @@ public class ExceptionUtils {
* the following example:</p>
*
* <pre>
* import org.apache.commons.lang.exception.ExceptionUtils;
* import org.apache.commons.lang3.exception.ExceptionUtils;
*
* public class MyException extends Exception {
*

View File

@ -25,7 +25,7 @@ import java.util.TimeZone;
* <p>Date and time formatting utilities and constants.</p>
*
* <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 Ant - DateUtils

View File

@ -62,7 +62,7 @@ public class DurationFormatUtils {
* <p>Pattern used with <code>FastDateFormat</code> and <code>SimpleDateFormat</code>
* 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
*/
public static final String ISO_EXTENDED_FORMAT_PATTERN = "'P'yyyy'Y'M'M'd'DT'H'H'm'M's.S'S'";

View File

@ -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 <a href="mailto:sergek@lokitech.com">Serge Knystautas</a>
*/

View File

@ -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

View File

@ -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

View File

@ -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$

View File

@ -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

View File

@ -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 <a href="mailto:ridesmet@users.sourceforge.net">Ringo De Smet</a>

View File

@ -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$

View File

@ -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 <a href="mailto:jmcnally@collab.net">John McNally</a>

View File

@ -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 <a href="mailto:steven@caswell.name">Steven Caswell</a>
* @author <a href="mailto:ridesmet@users.sourceforge.net">Ringo De Smet</a>

View File

@ -23,7 +23,7 @@ import junit.framework.TestCase;
/**
* <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>
*
* @version $Id: RangeTest.java 754804 2009-03-16 02:06:18Z sebb $

View File

@ -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 <a href="mailto:ridesmet@users.sourceforge.net">Ringo De Smet</a>

View File

@ -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 <a href="mailto:ridesmet@users.sourceforge.net">Ringo De Smet</a>

View File

@ -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

View File

@ -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$
*/

View File

@ -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 <a href="mailto:ridesmet@users.sourceforge.net">Ringo De Smet</a>

View File

@ -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

View File

@ -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 <a href="mailto:ridesmet@users.sourceforge.net">Ringo De Smet</a>

View File

@ -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.
*

View File

@ -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

View File

@ -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 <a href="mailto:sdowney@panix.com">Steve Downey</a>

View File

@ -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$

View File

@ -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 <a href="mailto:sdowney@panix.com">Steve Downey</a>

View File

@ -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

View File

@ -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();

View File

@ -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$

View File

@ -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$

View File

@ -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 <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
* @version $Id$

View File

@ -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$

View File

@ -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$

View File

@ -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 <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>

View File

@ -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}.
*
* <h3>Notes</h3>
* <p>

View File

@ -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$
*/

View File

@ -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 <a href="mailto:rand_mcneely@yahoo.com">Rand McNeely</a>

View File

@ -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 {

View File

@ -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$
*/

View File

@ -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$

View File

@ -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$
*/

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 <a href="mailto:sergek@lokitech.com">Serge Knystautas</a>
* @author <a href="mailto:steve@mungoknotwise.com">Steven Caswell</a>

View File

@ -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)

View File

@ -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 <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>