You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by mk...@apache.org on 2005/12/02 00:02:54 UTC

svn commit: r351511 - /myfaces/api/trunk/src/java/javax/faces/component/UIComponent.java

Author: mkienenb
Date: Thu Dec  1 15:02:50 2005
New Revision: 351511

URL: http://svn.apache.org/viewcvs?rev=351511&view=rev
Log:
Taking the coward's way out for now and removing JSF 1.2 documentation.  With my non-legal eye, I don't see any incompatibility between CDDL and Apache, but I'll wait until someone more knowledgeable confirms it.  Besides, I probably should have added the CDDL license to the project anyway in order to add this.

Modified:
    myfaces/api/trunk/src/java/javax/faces/component/UIComponent.java

Modified: myfaces/api/trunk/src/java/javax/faces/component/UIComponent.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/component/UIComponent.java?rev=351511&r1=351510&r2=351511&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/component/UIComponent.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/component/UIComponent.java Thu Dec  1 15:02:50 2005
@@ -45,19 +45,10 @@
 
     public abstract javax.faces.component.UIComponent getParent();
 
-
     /**
-     * <p>Set the parent <code>UIComponent</code> of this
-     * <code>UIComponent</code>.  <strong>This method must
-     * never be called by developers.
+     * For JSF-framework internal use only.   Don't call this method to
+     * add components to the component tree.
      * Use <code>parent.getChildren().add(child)</code> instead.
-     * A {@link UIComponent}'s internal
-     * implementation will call this method as components are added to or
-     * removed from a parent's child <code>List</code> or 
-     * facet <code>Map</code></strong>.</p>
-     * 
-     * @param parent The new parent, or <code>null</code> for the root node
-     *  of a component tree
      */
     public abstract void setParent(javax.faces.component.UIComponent parent);