Index: src/share/org/apache/myfaces/taglib/UIComponentBodyTagBase.java
===================================================================
RCS file: /home/cvspublic/incubator-myfaces/src/share/org/apache/myfaces/taglib/UIComponentBodyTagBase.java,v
retrieving revision 1.11
diff -u -r1.11 UIComponentBodyTagBase.java
--- src/share/org/apache/myfaces/taglib/UIComponentBodyTagBase.java	10 Jan 2005 08:08:12 -0000	1.11
+++ src/share/org/apache/myfaces/taglib/UIComponentBodyTagBase.java	21 Jan 2005 21:02:10 -0000
@@ -139,11 +139,25 @@
         setConverterProperty(component, _converter);
     }
 
+    /**
+     * Sets the transient attribute of the tag.  NOTE: Not every tag that extends this class will 
+     * actually make use of this attribute.  Check the TLD to see which components actually 
+     * implement it.
+     * 
+     * @param aTransient The value of the transient attribute.
+     */
     public void setTransient(String aTransient)
     {
         _transient = aTransient;
     }
     
+    /**
+     * Sets the forceId attribute of the tag.  NOTE: Not every tag that extends this class will 
+     * actually make use of this attribute.  Check the TLD to see which components actually 
+     * implement it.
+     * 
+     * @param aForceId The value of the forceId attribute.
+     */
     public void setForceId(String aForceId)
     {
         _forceId = aForceId;
Index: src/share/org/apache/myfaces/taglib/UIComponentTagBase.java
===================================================================
RCS file: /home/cvspublic/incubator-myfaces/src/share/org/apache/myfaces/taglib/UIComponentTagBase.java,v
retrieving revision 1.8
diff -u -r1.8 UIComponentTagBase.java
--- src/share/org/apache/myfaces/taglib/UIComponentTagBase.java	10 Jan 2005 08:08:12 -0000	1.8
+++ src/share/org/apache/myfaces/taglib/UIComponentTagBase.java	21 Jan 2005 21:02:10 -0000
@@ -73,11 +73,25 @@
         setConverterProperty(component, _converter);
     }
 
+    /**
+     * Sets the transient attribute of the tag.  NOTE: Not every tag that extends this class will 
+     * actually make use of this attribute.  Check the TLD to see which components actually 
+     * implement it.
+     * 
+     * @param aTransient The value of the transient attribute.
+     */
     public void setTransient(String aTransient)
     {
         _transient = aTransient;
     }
-    
+
+    /**
+     * Sets the forceId attribute of the tag.  NOTE: Not every tag that extends this class will 
+     * actually make use of this attribute.  Check the TLD to see which components actually 
+     * implement it.
+     * 
+     * @param aForceId The value of the forceId attribute.
+     */
     public void setForceId(String aForceId)
     {
         _forceId = aForceId;