You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ba...@apache.org on 2002/09/21 06:22:28 UTC

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/exception package.html

bayard      2002/09/20 21:22:28

  Added:       lang/src/java/org/apache/commons/lang package.html
               lang/src/java/org/apache/commons/lang/builder package.html
               lang/src/java/org/apache/commons/lang/enum package.html
               lang/src/java/org/apache/commons/lang/exception package.html
  Log:
  Enhanced documentation files. First take.
  
  Revision  Changes    Path
  1.1                  jakarta-commons/lang/src/java/org/apache/commons/lang/package.html
  
  Index: package.html
  ===================================================================
  <html>
  <body>
  A collection of highly reusable static utility methods, chiefly concerned 
  with adding value to java.lang and other standard core classes.
  </body>
  </html>
  
  
  
  1.1                  jakarta-commons/lang/src/java/org/apache/commons/lang/builder/package.html
  
  Index: package.html
  ===================================================================
  <html>
  <body>
  These builders assist with creating good equals(), toString(), hashCode(), 
  and compareTo() methods.
  </body>
  </html>
  
  
  
  1.1                  jakarta-commons/lang/src/java/org/apache/commons/lang/enum/package.html
  
  Index: package.html
  ===================================================================
  <html>
  <body>
  An implementation of the C style 'enum' in the Java world.
  
  The classic example being an RGB color enumeration.
  <pre>
  public final class ColorEnum extends Enum {
      public static final ColorEnum RED = new ColorEnum("Red");
      public static final ColorEnum GREEN = new ColorEnum("Green");
      public static final ColorEnum BLUE = new ColorEnum("Blue");
  
      private ColorEnum(String color) {
          super(color);
      }
  
      public static ColorEnum getEnum(String color) {
          return (ColorEnum) getEnum(ColorEnum.class, color);
      }
  
      public static Map getEnumMap() {
          return getEnumMap(ColorEnum.class);
      }
  
      public static List getEnumList() {
          return getEnumList(ColorEnum.class);
      }
  
      public static Iterator iterator() {
          return iterator(ColorEnum.class);
      }
  }
  </pre>
  </body>
  </html>
  
  
  
  1.1                  jakarta-commons/lang/src/java/org/apache/commons/lang/exception/package.html
  
  Index: package.html
  ===================================================================
  <html>
  <body>
  Provides a JDK 1.4 style Nested Exception functionality for those on prior 
  versions. <br>
  Also a static utility which creates a version independent Nested 
  Exception which can handle JDK 1.4 Exceptions as well as others. <br>
  Lastly, ExceptionUtils also contains the all-important Exception to String methods.
  </body>
  </html>
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>