[jboss-svn-commits] JBoss Common SVN: r3858 - shrinkwrap/trunk/api/src/main/java/org/jboss/shrinkwrap/api/container.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue Dec 15 11:59:20 EST 2009


Author: ALRubinger
Date: 2009-12-15 11:59:20 -0500 (Tue, 15 Dec 2009)
New Revision: 3858

Modified:
   shrinkwrap/trunk/api/src/main/java/org/jboss/shrinkwrap/api/container/ClassContainer.java
Log:
[SHRINKWRAP-106] Update JavaDoc in API to account for inner classes

Modified: shrinkwrap/trunk/api/src/main/java/org/jboss/shrinkwrap/api/container/ClassContainer.java
===================================================================
--- shrinkwrap/trunk/api/src/main/java/org/jboss/shrinkwrap/api/container/ClassContainer.java	2009-12-15 16:51:33 UTC (rev 3857)
+++ shrinkwrap/trunk/api/src/main/java/org/jboss/shrinkwrap/api/container/ClassContainer.java	2009-12-15 16:59:20 UTC (rev 3858)
@@ -38,7 +38,8 @@
    //-------------------------------------------------------------------------------------||
 
    /**
-    * Adds the specified Class to the {@link Archive}.
+    * Adds the {@link Class}, and all member (inner) {@link Class}es
+    * to the {@link Archive}.
     * 
     * @param class The class to add to the Archive
     * @return This archive
@@ -47,7 +48,8 @@
    T addClass(Class<?> clazz) throws IllegalArgumentException;
 
    /**
-    * Adds the {@link Class} with the specified fully-qualified name,
+    * Adds the {@link Class}, and all member (inner) {@link Class}es,
+    * with the specified fully-qualified name,
     * loaded by the Thread Context {@link ClassLoader}, to the {@link Archive}.
     * 
     * @param fullyQualifiedClassName The name of the {@link Class} to add
@@ -58,7 +60,8 @@
    T addClass(String fullyQualifiedClassName) throws IllegalArgumentException;
 
    /**
-    * Adds the {@link Class} with the specified fully-qualified name,
+    * Adds the {@link Class}, and all member (inner) @link{Class}es,
+    *  with the specified fully-qualified name,
     * loaded by the specified {@link ClassLoader}, to the {@link Archive}.
     * 
     * @param fullyQualifiedClassName The name of the {@link Class} to add
@@ -71,7 +74,8 @@
    T addClass(String fullyQualifiedClassName, ClassLoader cl) throws IllegalArgumentException;
 
    /**
-    * Adds the specified Classes to the {@link Archive}.
+    * Adds the {@link Class}es, and all member (inner) {@link Class}es
+    * to the {@link Archive}.
     * 
     * @param classes The classes to add to the Archive
     * @return This archive



More information about the jboss-svn-commits mailing list