You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ma...@apache.org on 2005/12/20 21:41:22 UTC

svn commit: r358099 [2/2] - in /myfaces/api/trunk/src/java/javax/faces: ./ application/ component/ component/html/ context/ convert/ el/ event/ lifecycle/ model/ render/ validator/ webapp/

Modified: myfaces/api/trunk/src/java/javax/faces/lifecycle/Lifecycle.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/lifecycle/Lifecycle.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/lifecycle/Lifecycle.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/lifecycle/Lifecycle.java Tue Dec 20 12:40:00 2005
@@ -18,6 +18,8 @@
 import javax.faces.FacesException;
 
 /**
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
  * @author Manfred Geiler (latest modification by $Author$)
  * @version $Revision$ $Date$
  */

Modified: myfaces/api/trunk/src/java/javax/faces/lifecycle/LifecycleFactory.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/lifecycle/LifecycleFactory.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/lifecycle/LifecycleFactory.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/lifecycle/LifecycleFactory.java Tue Dec 20 12:40:00 2005
@@ -18,6 +18,8 @@
 import java.util.Iterator;
 
 /**
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
  * @author Manfred Geiler (latest modification by $Author$)
  * @version $Revision$ $Date$
  */

Modified: myfaces/api/trunk/src/java/javax/faces/model/ArrayDataModel.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/model/ArrayDataModel.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/model/ArrayDataModel.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/model/ArrayDataModel.java Tue Dec 20 12:40:00 2005
@@ -16,9 +16,11 @@
 package javax.faces.model;
 
 /**
-  * @author Thomas Spiegl (latest modification by $Author$)
-  * @version $Revision$ $Date$
-*/
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
+ * @author Thomas Spiegl (latest modification by $Author$)
+ * @version $Revision$ $Date$
+ */
 public class ArrayDataModel extends DataModel
 {
 	// FIELDS

Modified: myfaces/api/trunk/src/java/javax/faces/model/DataModel.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/model/DataModel.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/model/DataModel.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/model/DataModel.java Tue Dec 20 12:40:00 2005
@@ -19,29 +19,11 @@
 import java.util.List;
 
 /**
-  * Represents the data presented by a UIData component, together with
-  * some "state" information about the currently selected row within the
-  * datalist for use by listeners on UIData components. This class allows
-  * managed bean code to avoid binding directly to UIData components for
-  * typical uses.
-  * <p> 
-  * Note that DataModel and its standard subclasses are not serializable,
-  * as there is no state in a DataModel object itself that needs to be
-  * preserved between render and restore-view. UIData components therefore
-  * do not store their DataModel when serialized; they just evaluate their
-  * "value" EL expression to refetch the object during the "apply request"
-  * phase.
-  * <p>
-  * Because DataModel is not serializable, any "managed bean" that needs to
-  * be serialized and which has a member of type DataModel should therefore
-  * mark that member transient. If there is a need to preserve the datalist
-  * contained within the DataModel then ensure a reference to that list is
-  * stored in a non-transient member, or use a custom serialization method
-  * that explicitly serializes dataModel.getWrappedData.
-  *  
-  * @author Thomas Spiegl (latest modification by $Author$)
-  * @version $Revision$ $Date$
-*/
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
+ * @author Thomas Spiegl (latest modification by $Author$)
+ * @version $Revision$ $Date$
+ */
 public abstract class DataModel
 {
 	// FIELDS

Modified: myfaces/api/trunk/src/java/javax/faces/model/DataModelEvent.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/model/DataModelEvent.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/model/DataModelEvent.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/model/DataModelEvent.java Tue Dec 20 12:40:00 2005
@@ -16,9 +16,11 @@
 package javax.faces.model;
 
 /**
-  * @author Thomas Spiegl (latest modification by $Author$)
-  * @version $Revision$ $Date$
-*/
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
+ * @author Thomas Spiegl (latest modification by $Author$)
+ * @version $Revision$ $Date$
+ */
 public class DataModelEvent extends java.util.EventObject
 {
     private static final long serialVersionUID = 1823115573192262656L;

Modified: myfaces/api/trunk/src/java/javax/faces/model/DataModelListener.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/model/DataModelListener.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/model/DataModelListener.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/model/DataModelListener.java Tue Dec 20 12:40:00 2005
@@ -16,9 +16,11 @@
 package javax.faces.model;
 
 /**
-  * @author Thomas Spiegl (latest modification by $Author$)
-  * @version $Revision$ $Date$
-*/
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
+ * @author Thomas Spiegl (latest modification by $Author$)
+ * @version $Revision$ $Date$
+ */
 public interface DataModelListener extends java.util.EventListener
 {
 	void rowSelected(DataModelEvent event);

Modified: myfaces/api/trunk/src/java/javax/faces/model/ListDataModel.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/model/ListDataModel.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/model/ListDataModel.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/model/ListDataModel.java Tue Dec 20 12:40:00 2005
@@ -18,9 +18,11 @@
 import java.util.List;
 
 /**
-  * @author Thomas Spiegl (latest modification by $Author$)
-  * @version $Revision$ $Date$
-*/
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
+ * @author Thomas Spiegl (latest modification by $Author$)
+ * @version $Revision$ $Date$
+ */
 public class ListDataModel extends DataModel
 {
 

Modified: myfaces/api/trunk/src/java/javax/faces/model/ResultDataModel.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/model/ResultDataModel.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/model/ResultDataModel.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/model/ResultDataModel.java Tue Dec 20 12:40:00 2005
@@ -19,9 +19,11 @@
 import java.util.SortedMap;
 
 /**
-  * @author Thomas Spiegl (latest modification by $Author$)
-  * @version $Revision$ $Date$
-*/
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
+ * @author Thomas Spiegl (latest modification by $Author$)
+ * @version $Revision$ $Date$
+ */
 public class ResultDataModel extends DataModel
 {
     // FIELDS

Modified: myfaces/api/trunk/src/java/javax/faces/model/ResultSetDataModel.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/model/ResultSetDataModel.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/model/ResultSetDataModel.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/model/ResultSetDataModel.java Tue Dec 20 12:40:00 2005
@@ -22,10 +22,12 @@
 import java.util.*;
 
 /**
-  * @author Thomas Spiegl (latest modification by $Author$)
-  * @author Martin Marinschek
-  * @version $Revision$ $Date$
-*/
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
+ * @author Thomas Spiegl (latest modification by $Author$)
+ * @author Martin Marinschek
+ * @version $Revision$ $Date$
+ */
 public class ResultSetDataModel extends DataModel
 {
     // FIELDS

Modified: myfaces/api/trunk/src/java/javax/faces/model/ScalarDataModel.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/model/ScalarDataModel.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/model/ScalarDataModel.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/model/ScalarDataModel.java Tue Dec 20 12:40:00 2005
@@ -16,9 +16,11 @@
 package javax.faces.model;
 
 /**
-  * @author Thomas Spiegl (latest modification by $Author$)
-  * @version $Revision$ $Date$
-*/
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
+ * @author Thomas Spiegl (latest modification by $Author$)
+ * @version $Revision$ $Date$
+ */
 public class ScalarDataModel extends DataModel
 {
     // FIELDS

Modified: myfaces/api/trunk/src/java/javax/faces/model/SelectItem.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/model/SelectItem.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/model/SelectItem.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/model/SelectItem.java Tue Dec 20 12:40:00 2005
@@ -18,6 +18,8 @@
 import java.io.Serializable;
 
 /**
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
  * @author Thomas Spiegl (latest modification by $Author$)
  * @version $Revision$ $Date$
  */

Modified: myfaces/api/trunk/src/java/javax/faces/model/SelectItemGroup.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/model/SelectItemGroup.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/model/SelectItemGroup.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/model/SelectItemGroup.java Tue Dec 20 12:40:00 2005
@@ -16,6 +16,8 @@
 package javax.faces.model;
 
 /**
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
  * @author Thomas Spiegl (latest modification by $Author$)
  * @version $Revision$ $Date$
  */

Modified: myfaces/api/trunk/src/java/javax/faces/render/RenderKit.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/render/RenderKit.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/render/RenderKit.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/render/RenderKit.java Tue Dec 20 12:40:00 2005
@@ -21,6 +21,8 @@
 import java.io.OutputStream;
 
 /**
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
  * @author Manfred Geiler (latest modification by $Author$)
  * @version $Revision$ $Date$
  */

Modified: myfaces/api/trunk/src/java/javax/faces/render/RenderKitFactory.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/render/RenderKitFactory.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/render/RenderKitFactory.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/render/RenderKitFactory.java Tue Dec 20 12:40:00 2005
@@ -19,6 +19,8 @@
 import java.util.Iterator;
 
 /**
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
  * @author Manfred Geiler (latest modification by $Author$)
  * @version $Revision$ $Date$
  */

Modified: myfaces/api/trunk/src/java/javax/faces/render/Renderer.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/render/Renderer.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/render/Renderer.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/render/Renderer.java Tue Dec 20 12:40:00 2005
@@ -23,6 +23,8 @@
 import javax.faces.convert.ConverterException;
 
 /**
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
  * @author Manfred Geiler (latest modification by $Author$)
  * @version $Revision$ $Date$
  */

Modified: myfaces/api/trunk/src/java/javax/faces/render/ResponseStateManager.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/render/ResponseStateManager.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/render/ResponseStateManager.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/render/ResponseStateManager.java Tue Dec 20 12:40:00 2005
@@ -20,6 +20,8 @@
 import java.io.IOException;
 
 /**
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
  * @author Manfred Geiler (latest modification by $Author$)
  * @version $Revision$ $Date$
  */

Modified: myfaces/api/trunk/src/java/javax/faces/validator/DoubleRangeValidator.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/validator/DoubleRangeValidator.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/validator/DoubleRangeValidator.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/validator/DoubleRangeValidator.java Tue Dec 20 12:40:00 2005
@@ -20,6 +20,8 @@
 import javax.faces.context.FacesContext;
 
 /**
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
  * @author Manfred Geiler (latest modification by $Author$)
  * @author Thomas Spiegl
  * @version $Revision$ $Date$

Modified: myfaces/api/trunk/src/java/javax/faces/validator/LengthValidator.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/validator/LengthValidator.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/validator/LengthValidator.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/validator/LengthValidator.java Tue Dec 20 12:40:00 2005
@@ -20,6 +20,8 @@
 import javax.faces.context.FacesContext;
 
 /**
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
  * @author Manfred Geiler (latest modification by $Author$)
  * @author Thomas Spiegl
  * @version $Revision$ $Date$

Modified: myfaces/api/trunk/src/java/javax/faces/validator/LongRangeValidator.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/validator/LongRangeValidator.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/validator/LongRangeValidator.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/validator/LongRangeValidator.java Tue Dec 20 12:40:00 2005
@@ -20,6 +20,8 @@
 import javax.faces.context.FacesContext;
 
 /**
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
  * @author Manfred Geiler (latest modification by $Author$)
  * @author Thomas Spiegl
  * @version $Revision$ $Date$

Modified: myfaces/api/trunk/src/java/javax/faces/validator/Validator.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/validator/Validator.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/validator/Validator.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/validator/Validator.java Tue Dec 20 12:40:00 2005
@@ -20,6 +20,8 @@
 import java.util.EventListener;
 
 /**
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
  * @author Manfred Geiler (latest modification by $Author$)
  * @author Thomas Spiegl
  * @version $Revision$ $Date$

Modified: myfaces/api/trunk/src/java/javax/faces/validator/ValidatorException.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/validator/ValidatorException.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/validator/ValidatorException.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/validator/ValidatorException.java Tue Dec 20 12:40:00 2005
@@ -19,6 +19,8 @@
 import javax.faces.application.FacesMessage;
 
 /**
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
  * @author Manfred Geiler (latest modification by $Author$)
  * @author Thomas Spiegl
  * @version $Revision$ $Date$

Modified: myfaces/api/trunk/src/java/javax/faces/webapp/AttributeTag.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/webapp/AttributeTag.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/webapp/AttributeTag.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/webapp/AttributeTag.java Tue Dec 20 12:40:00 2005
@@ -23,6 +23,8 @@
 import javax.servlet.jsp.tagext.TagSupport;
 
 /**
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
  * @author Manfred Geiler (latest modification by $Author$)
  * @version $Revision$ $Date$
  */

Modified: myfaces/api/trunk/src/java/javax/faces/webapp/ConverterTag.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/webapp/ConverterTag.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/webapp/ConverterTag.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/webapp/ConverterTag.java Tue Dec 20 12:40:00 2005
@@ -26,6 +26,8 @@
 import javax.servlet.jsp.tagext.TagSupport;
 
 /**
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
  * @author Manfred Geiler (latest modification by $Author$)
  * @version $Revision$ $Date$
  */

Modified: myfaces/api/trunk/src/java/javax/faces/webapp/FacesServlet.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/webapp/FacesServlet.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/webapp/FacesServlet.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/webapp/FacesServlet.java Tue Dec 20 12:40:00 2005
@@ -32,6 +32,8 @@
 import org.apache.commons.logging.LogFactory;
 
 /**
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
  * @author Manfred Geiler (latest modification by $Author$)
  * @version $Revision$ $Date$
  */

Modified: myfaces/api/trunk/src/java/javax/faces/webapp/FacetTag.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/webapp/FacetTag.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/webapp/FacetTag.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/webapp/FacetTag.java Tue Dec 20 12:40:00 2005
@@ -19,6 +19,8 @@
 import javax.servlet.jsp.tagext.TagSupport;
 
 /**
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
  * @author Manfred Geiler (latest modification by $Author$)
  * @version $Revision$ $Date$
  */

Modified: myfaces/api/trunk/src/java/javax/faces/webapp/UIComponentBodyTag.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/webapp/UIComponentBodyTag.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/webapp/UIComponentBodyTag.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/webapp/UIComponentBodyTag.java Tue Dec 20 12:40:00 2005
@@ -21,6 +21,8 @@
 import javax.servlet.jsp.tagext.BodyTag;
 
 /**
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
  * @author Manfred Geiler (latest modification by $Author$)
  * @version $Revision$ $Date$
  */

Modified: myfaces/api/trunk/src/java/javax/faces/webapp/UIComponentTag.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/webapp/UIComponentTag.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/webapp/UIComponentTag.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/webapp/UIComponentTag.java Tue Dec 20 12:40:00 2005
@@ -36,15 +36,8 @@
 import java.util.*;
 
 /**
- * Base class for all JSP tags that represent a JSF UIComponent.
- * <p>
- * <i>Disclaimer</i>: The official definition for the behaviour of
- * this class is the JSF specification but for legal reasons the
- * specification cannot be replicated here. Any javadoc present on this
- * class therefore describes the current implementation rather than the
- * officially required behaviour, though it is believed that this class
- * does comply with the specification.
- * 
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
  * @author Manfred Geiler (latest modification by $Author$)
  * @version $Revision$ $Date$
  */

Modified: myfaces/api/trunk/src/java/javax/faces/webapp/ValidatorTag.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/webapp/ValidatorTag.java?rev=358099&r1=358098&r2=358099&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/webapp/ValidatorTag.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/webapp/ValidatorTag.java Tue Dec 20 12:40:00 2005
@@ -26,6 +26,8 @@
 import javax.servlet.jsp.tagext.TagSupport;
 
 /**
+ * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
+ *
  * @author Manfred Geiler (latest modification by $Author$)
  * @version $Revision$ $Date$
  */