diff --git a/src/java/org/apache/commons/lang/CharSet.java b/src/java/org/apache/commons/lang/CharSet.java index 3a7512414..4bd568673 100644 --- a/src/java/org/apache/commons/lang/CharSet.java +++ b/src/java/org/apache/commons/lang/CharSet.java @@ -70,7 +70,7 @@ * @author Phil Steitz * @author Pete Gieser * @since 1.0 - * @version $Id: CharSet.java,v 1.16 2003/08/18 02:22:22 bayard Exp $ + * @version $Id: CharSet.java,v 1.17 2003/08/19 00:11:20 scolebourne Exp $ */ public class CharSet implements Serializable { @@ -124,7 +124,7 @@ public class CharSet implements Serializable { * * *

The matching order is:

- *
    *
  1. Negated multi character range, such as "^a-e" *
  2. Ordinary multi character range, such as "a-e" *
  3. Negated single character, such as "^a" diff --git a/src/java/org/apache/commons/lang/StringUtils.java b/src/java/org/apache/commons/lang/StringUtils.java index 31d5318d0..f6b141e69 100644 --- a/src/java/org/apache/commons/lang/StringUtils.java +++ b/src/java/org/apache/commons/lang/StringUtils.java @@ -74,8 +74,10 @@ * - index-of any of a set of Strings
  4. *
  5. ContainsOnly/ContainsNone * - does String contains only/none of these characters
  6. - *
  7. SubString/Left/Right/Mid/SubStringBefore/SubStringAfter + *
  8. Substring/Left/Right/Mid * - null-safe substring extractions
  9. + *
  10. SubstringBefore/SubstringAfter/SubstringBetween + * - substring extraction relative to other strings
  11. *
  12. Split/Join * - splits a String into an array of substrings and vice versa
  13. *
  14. Replace/Delete/Overlay @@ -86,8 +88,6 @@ * - pads a String
  15. *
  16. UpperCase/LowerCase/SwapCase/Capitalize/Uncapitalize * - changes the case of a String
  17. - *
  18. NestedString - * - returns a substring nested within other Strings
  19. *
  20. CountMatches * - counts the number of occurrances of one String in another
  21. *
  22. IsAlpha/IsNumeric/IsWhitespace @@ -121,8 +121,8 @@ * details vary by method.

    * *

    A side effect of the null handling is that a - * {@link java.lang.NullPointerException} should be considered a bug in StringUtils - * (except for deprecated methods).

    + * NullPointerException should be considered a bug in + * StringUtils (except for deprecated methods).

    * *

    Methods in this class give sample code to explain their operation. * The symbol * is used to indicate any input including null.

    @@ -145,7 +145,7 @@ * @author Gary Gregory * @author Phil Steitz * @since 1.0 - * @version $Id: StringUtils.java,v 1.102 2003/08/18 02:22:23 bayard Exp $ + * @version $Id: StringUtils.java,v 1.103 2003/08/19 00:11:20 scolebourne Exp $ */ public class StringUtils { // Performance testing notes (JDK 1.4, Jul03, scolebourne) diff --git a/src/java/org/apache/commons/lang/WordUtils.java b/src/java/org/apache/commons/lang/WordUtils.java index 570a12199..6ffc3d71b 100644 --- a/src/java/org/apache/commons/lang/WordUtils.java +++ b/src/java/org/apache/commons/lang/WordUtils.java @@ -66,7 +66,7 @@ * @author Henning P. Schmiedehausen * @author Gary Gregory * @since 2.0 - * @version $Id: WordUtils.java,v 1.5 2003/08/18 02:22:23 bayard Exp $ + * @version $Id: WordUtils.java,v 1.6 2003/08/19 00:11:20 scolebourne Exp $ */ public class WordUtils { @@ -168,7 +168,7 @@ public WordUtils() { * *
          * WordUtils.wrap(null, *) = null
    -     * WordUtils.wrap("", *) = null
    +     * WordUtils.wrap("", *) = ""
          * 
    * * @param str the String to be word wrapped, may be null @@ -187,7 +187,7 @@ public static String wrap(String str, int wrapLength) { * *
          * WordUtils.wrap(null, *, *, *) = null
    -     * WordUtils.wrap("", *, *, *) = null
    +     * WordUtils.wrap("", *, *, *) = ""
          * 
    * * @param str the String to be word wrapped, may be null