You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by de...@apache.org on 2018/05/08 12:49:28 UTC

[myfaces] 29/29: update site javadoc

This is an automated email from the ASF dual-hosted git repository.

deki pushed a commit to branch 1.1.x
in repository https://gitbox.apache.org/repos/asf/myfaces.git

commit 0675feff08cc9b5f9da9765cd53a8c9ebccd0a9a
Author: Leonardo Uribe <lu...@apache.org>
AuthorDate: Tue Apr 10 21:03:32 2012 +0000

    update site javadoc
---
 api/src/main/java/javax/faces/component/UIColumn.java        |  4 ++--
 api/src/main/java/javax/faces/component/UIParameter.java     |  4 ++--
 api/src/main/java/javax/faces/component/UISelectItem.java    |  4 ++--
 api/src/main/java/javax/faces/component/UISelectItems.java   |  2 +-
 api/src/main/java/javax/faces/component/UIViewRoot.java      |  2 +-
 .../java/javax/faces/component/html/HtmlInputHidden.java     |  2 +-
 .../java/javax/faces/component/html/_HtmlCommandButton.java  |  2 +-
 .../java/javax/faces/component/html/_HtmlCommandLink.java    |  2 +-
 .../main/java/javax/faces/component/html/_HtmlDataTable.java |  2 +-
 api/src/main/java/javax/faces/component/html/_HtmlForm.java  |  2 +-
 .../java/javax/faces/component/html/_HtmlInputSecret.java    |  2 +-
 .../main/java/javax/faces/component/html/_HtmlInputText.java |  2 +-
 .../java/javax/faces/component/html/_HtmlInputTextarea.java  |  2 +-
 .../main/java/javax/faces/component/html/_HtmlMessage.java   |  2 +-
 .../main/java/javax/faces/component/html/_HtmlMessages.java  | 12 ++++++------
 .../java/javax/faces/component/html/_HtmlOutputFormat.java   |  2 +-
 .../java/javax/faces/component/html/_HtmlOutputLabel.java    |  4 ++--
 .../java/javax/faces/component/html/_HtmlOutputLink.java     |  2 +-
 .../java/javax/faces/component/html/_HtmlOutputText.java     |  2 +-
 .../main/java/javax/faces/component/html/_HtmlPanelGrid.java |  2 +-
 .../java/javax/faces/component/html/_HtmlPanelGroup.java     |  2 +-
 .../faces/component/html/_HtmlSelectBooleanCheckbox.java     |  4 ++--
 .../javax/faces/component/html/_HtmlSelectManyCheckbox.java  |  8 ++++----
 .../javax/faces/component/html/_HtmlSelectManyListbox.java   |  8 ++++----
 .../java/javax/faces/component/html/_HtmlSelectManyMenu.java |  8 ++++----
 .../javax/faces/component/html/_HtmlSelectOneListbox.java    | 10 +++++-----
 .../java/javax/faces/component/html/_HtmlSelectOneMenu.java  |  8 ++++----
 .../java/javax/faces/component/html/_HtmlSelectOneRadio.java |  8 ++++----
 api/src/main/java/javax/faces/webapp/AttributeTag.java       |  6 +++---
 api/src/main/java/javax/faces/webapp/ValidatorTag.java       |  4 ++--
 .../apache/myfaces/taglib/core/ValueChangeListenerTag.java   |  2 +-
 .../java/org/apache/myfaces/taglib/core/VerbatimTag.java     |  2 +-
 .../main/java/org/apache/myfaces/taglib/core/ViewTag.java    |  2 +-
 33 files changed, 65 insertions(+), 65 deletions(-)

diff --git a/api/src/main/java/javax/faces/component/UIColumn.java b/api/src/main/java/javax/faces/component/UIColumn.java
index 15136c4..01ac1d8 100755
--- a/api/src/main/java/javax/faces/component/UIColumn.java
+++ b/api/src/main/java/javax/faces/component/UIColumn.java
@@ -25,10 +25,10 @@ package javax.faces.component;
  * It can be decorated with "header" and "footer" facets to drive
  * the output of header and footer rows. Row values are specified
  * via its children.
- * <p>
+ * </p><p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
- * <p>
+ * </p>
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/UIParameter.java b/api/src/main/java/javax/faces/component/UIParameter.java
index 2f44e17..d80362d 100755
--- a/api/src/main/java/javax/faces/component/UIParameter.java
+++ b/api/src/main/java/javax/faces/component/UIParameter.java
@@ -28,9 +28,9 @@ import javax.faces.el.ValueBinding;
  * A UIComponent is created to represent this name-value pair, and stored as
  * a child of the parent component; what effect this has depends upon the
  * renderer of that parent component.
- * <p>
+ * </p><p>
  * Unless otherwise specified, all attributes accept static values or EL expressions.
- * <p>
+ * </p>
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/UISelectItem.java b/api/src/main/java/javax/faces/component/UISelectItem.java
index cf8afce..cd87810 100755
--- a/api/src/main/java/javax/faces/component/UISelectItem.java
+++ b/api/src/main/java/javax/faces/component/UISelectItem.java
@@ -27,11 +27,11 @@ import javax.faces.el.ValueBinding;
  * The option attributes can either be defined directly on this component
  * (via the itemValue, itemLabel, itemDescription properties) or the value
  * property can reference a SelectItem object (directly or via an EL expression).
- * <p>
+ * </p><p>
  * The value expression (if defined) is read-only; the parent select component
  * will have a value attribute specifying where the value for the chosen
  * selection will be stored.
- * <p>
+ * </p>
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/UISelectItems.java b/api/src/main/java/javax/faces/component/UISelectItems.java
index 075dd2d..843ae10 100755
--- a/api/src/main/java/javax/faces/component/UISelectItems.java
+++ b/api/src/main/java/javax/faces/component/UISelectItems.java
@@ -28,7 +28,7 @@ import javax.faces.el.ValueBinding;
  * <p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
- * <p> 
+ * </p> 
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/UIViewRoot.java b/api/src/main/java/javax/faces/component/UIViewRoot.java
index d2cf8ac..c069cab 100755
--- a/api/src/main/java/javax/faces/component/UIViewRoot.java
+++ b/api/src/main/java/javax/faces/component/UIViewRoot.java
@@ -36,7 +36,7 @@ import javax.faces.event.PhaseId;
  * components that are part of the view.
  * <p> 
  * Unless otherwise specified, all attributes accept static values or EL expressions.
- * <p>
+ * </p>
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/HtmlInputHidden.java b/api/src/main/java/javax/faces/component/html/HtmlInputHidden.java
index 06e04df..a8b99b1 100755
--- a/api/src/main/java/javax/faces/component/html/HtmlInputHidden.java
+++ b/api/src/main/java/javax/faces/component/html/HtmlInputHidden.java
@@ -24,7 +24,7 @@ import javax.faces.component.UIInput;
  * <p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
- * <p>
+ * </p>
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlCommandButton.java b/api/src/main/java/javax/faces/component/html/_HtmlCommandButton.java
index bf95996..d9e235b 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlCommandButton.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlCommandButton.java
@@ -25,7 +25,7 @@ import javax.faces.component.UICommand;
  * <p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
- * <p>
+ * </p>
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlCommandLink.java b/api/src/main/java/javax/faces/component/html/_HtmlCommandLink.java
index cc94384..bc72935 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlCommandLink.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlCommandLink.java
@@ -25,7 +25,7 @@ import javax.faces.component.UICommand;
  * <p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions. 
- * <p>
+ * </p>
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  * 
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlDataTable.java b/api/src/main/java/javax/faces/component/html/_HtmlDataTable.java
index 51d515c..52adc23 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlDataTable.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlDataTable.java
@@ -31,7 +31,7 @@ import javax.faces.context.FacesContext;
  * <p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions. 
- * <p>
+ * </p>
  * Extend standard UIData component to add support for html-specific features
  * such as CSS style attributes and event handler scripts.
  * <p>
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlForm.java b/api/src/main/java/javax/faces/component/html/_HtmlForm.java
index a022469..91fc3a4 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlForm.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlForm.java
@@ -22,7 +22,7 @@ import javax.faces.component.UIForm;
 
 /**
  * Renders an HTML form element.
- * <p>
+ * 
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlInputSecret.java b/api/src/main/java/javax/faces/component/html/_HtmlInputSecret.java
index 22e106f..252cff6 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlInputSecret.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlInputSecret.java
@@ -25,7 +25,7 @@ import javax.faces.component.UIInput;
  * <p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
- * <p>
+ * </p>
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  * 
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlInputText.java b/api/src/main/java/javax/faces/component/html/_HtmlInputText.java
index 0d6ed69..14b5a80 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlInputText.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlInputText.java
@@ -22,7 +22,7 @@ import javax.faces.component.UIInput;
 
 /**
  * Renders a HTML input element.
- * <p>
+ * 
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlInputTextarea.java b/api/src/main/java/javax/faces/component/html/_HtmlInputTextarea.java
index 38d60b2..d5f457e 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlInputTextarea.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlInputTextarea.java
@@ -25,7 +25,7 @@ import javax.faces.component.UIInput;
  * <p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
- * <p>
+ * </p>
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlMessage.java b/api/src/main/java/javax/faces/component/html/_HtmlMessage.java
index c52a970..f607197 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlMessage.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlMessage.java
@@ -26,7 +26,7 @@ import javax.faces.component.UIMessage;
  * <p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
- * <p>
+ * </p>
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlMessages.java b/api/src/main/java/javax/faces/component/html/_HtmlMessages.java
index 0406801..3a9fb82 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlMessages.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlMessages.java
@@ -24,18 +24,18 @@ import javax.faces.component.UIMessages;
  * Renders all or some FacesMessages depending on the "for" and
  * "globalOnly" attributes.
  * <p>
- * The behaviour of this component is:
+ * The behaviour of this component is:</p>
  * <ul>
  * <li>If globalOnly = true, only global messages, that have no associated
- * clientId, will be displayed.
+ * clientId, will be displayed.</li>
  * <li>else if there is a "for" attribute, only messages that are
  * assigned to the component referenced by the "for" attribute
- * are displayed.
- * <li>else all messages are displayed.
+ * are displayed.</li>
+ * <li>else all messages are displayed.</li>
  * </ul>
- * Unless otherwise specified, all attributes accept static values
+ * <p>Unless otherwise specified, all attributes accept static values
  * or EL expressions.
- * <p>
+ * </p>
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlOutputFormat.java b/api/src/main/java/javax/faces/component/html/_HtmlOutputFormat.java
index 6d283b2..7dcc97d 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlOutputFormat.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlOutputFormat.java
@@ -27,7 +27,7 @@ import javax.faces.component.UIOutput;
  * <p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
- * <p>
+ * </p>
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlOutputLabel.java b/api/src/main/java/javax/faces/component/html/_HtmlOutputLabel.java
index f3b3570..ae2d7e2 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlOutputLabel.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlOutputLabel.java
@@ -25,10 +25,10 @@ import javax.faces.component.UIOutput;
  * <p>
  * In addition to the JSF specification, MyFaces allows it to directly
  * give an output text via the "value" attribute.
- * <p>
+ * </p><p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
- * <p>
+ * </p>
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlOutputLink.java b/api/src/main/java/javax/faces/component/html/_HtmlOutputLink.java
index a287770..1cbab4d 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlOutputLink.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlOutputLink.java
@@ -26,7 +26,7 @@ import javax.faces.component.UIOutput;
  * <p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
- * <p>
+ * </p>
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlOutputText.java b/api/src/main/java/javax/faces/component/html/_HtmlOutputText.java
index 801fa87..ebecb52 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlOutputText.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlOutputText.java
@@ -27,7 +27,7 @@ import javax.faces.component.UIOutput;
  * <p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
- * <p>
+ * </p>
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlPanelGrid.java b/api/src/main/java/javax/faces/component/html/_HtmlPanelGrid.java
index 7ee852e..6013da3 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlPanelGrid.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlPanelGrid.java
@@ -29,7 +29,7 @@ import javax.faces.component.UIPanel;
  * <p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
- * <p>
+ * </p>
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlPanelGroup.java b/api/src/main/java/javax/faces/component/html/_HtmlPanelGroup.java
index 4033ed0..9622005 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlPanelGroup.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlPanelGroup.java
@@ -27,7 +27,7 @@ import javax.faces.component.UIPanel;
  * <p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
- * <p>
+ * </p>
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlSelectBooleanCheckbox.java b/api/src/main/java/javax/faces/component/html/_HtmlSelectBooleanCheckbox.java
index 6c118f2..777ef88 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlSelectBooleanCheckbox.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlSelectBooleanCheckbox.java
@@ -27,10 +27,10 @@ import javax.faces.component.UISelectBoolean;
  * Renders as an HTML input tag with its type set to "checkbox", and
  * its name attribute set to the id. The "checked" attribute is rendered
  * if the value of this component is true.
- * <p>
+ * </p><p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
- * <p>
+ * </p>
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlSelectManyCheckbox.java b/api/src/main/java/javax/faces/component/html/_HtmlSelectManyCheckbox.java
index 4f5a009..bbe45ec 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlSelectManyCheckbox.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlSelectManyCheckbox.java
@@ -27,10 +27,10 @@ import javax.faces.component.UISelectMany;
  * This is presented as a table with one cell per available option; each
  * cell contains a checkbox and the option's label. The "layout" attribute
  * determines whether the checkboxes are laid out horizontally or vertically.
- * <p>
+ * </p><p>
  * The set of available options is defined by adding child
  * f:selectItem or f:selectItems components to this component.
- * <p>
+ * </p><p>
  * The value attribute must be a value-binding expression to a
  * property of type List, Object array or primitive array. That
  * "collection" is expected to contain objects of the same type as
@@ -41,10 +41,10 @@ import javax.faces.component.UISelectMany;
  * new collection object of the appropriate type. The new collection
  * object contains the value of each child SelectItem object that
  * is currently selected.
- * <p>
+ * </p><p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
- * <p>
+ * </p>
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlSelectManyListbox.java b/api/src/main/java/javax/faces/component/html/_HtmlSelectManyListbox.java
index fc0f117..5b93efc 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlSelectManyListbox.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlSelectManyListbox.java
@@ -27,14 +27,14 @@ import javax.faces.component.UISelectMany;
  * <p>
  * The set of available options is defined by adding child
  * f:selectItem or f:selectItems components to this component.
- * <p>
+ * </p><p>
  * The list is rendered as an HTML select element. The "multiple"
  * attribute is set on the element and the size attribute is set to
  * the provided value, defaulting to the number of items in the list
  * if no value is provided. If the size is set to 1, then a
  * "drop-down" list (aka "combo-box") is presented, though if this is
  * the intention then a selectManyMenu should be used instead.
- * <p>
+ * </p><p>
  * The value attribute must be a value-binding expression to a
  * property of type List, Object array or primitive array. That
  * "collection" is expected to contain objects of the same type as
@@ -43,10 +43,10 @@ import javax.faces.component.UISelectMany;
  * selected initially. During the update phase, the property is set
  * to contain a "collection" of values for those child SelectItem
  * objects that are currently selected.
- * <p>
+ * </p><p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
- * <p>
+ * </p>
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlSelectManyMenu.java b/api/src/main/java/javax/faces/component/html/_HtmlSelectManyMenu.java
index 758cb49..e093812 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlSelectManyMenu.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlSelectManyMenu.java
@@ -27,11 +27,11 @@ import javax.faces.component.UISelectMany;
  * <p>
  * The set of available options is defined by adding child
  * f:selectItem or f:selectItems components to this component.
- * <p>
+ * </p><p>
  * Renders as an HTML select element, with the choices made up of 
  * child f:selectItem or f:selectItems elements. The multiple
  * attribute is set and the size attribute is set to 1.
- * <p>
+ * </p><p>
  * The value attribute must be a value-binding expression to a
  * property of type List, Object array or primitive array. That
  * "collection" is expected to contain objects of the same type as
@@ -40,10 +40,10 @@ import javax.faces.component.UISelectMany;
  * selected initially. During the update phase, the property is set
  * to contain a "collection" of values for those child SelectItem
  * objects that are currently selected.
- * <p>
+ * </p><p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
- * <p>
+ * </p>
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlSelectOneListbox.java b/api/src/main/java/javax/faces/component/html/_HtmlSelectOneListbox.java
index eaab272..a2fbeb4 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlSelectOneListbox.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlSelectOneListbox.java
@@ -24,26 +24,26 @@ import javax.faces.component.UISelectOne;
  * Allow the user to choose one option from a set of options.
  * <p>
  * Rendered as a listbox with the MULTIPLE attribute set to false.
- * <p>
+ * </p><p>
  * The available choices are defined via child f:selectItem or
  * f:selectItems elements. The size of the listbox defaults to the
  * number of available choices; if size is explicitly set to a
  * smaller value, then scrollbars will be rendered. If size is set
  * to 1 then a "drop-down menu" (aka "combo-box") is rendered, though
  * if this is the intent then selectOneMenu should be used instead.
- * <p>
+ * </p><p>
  * The value attribute of this component is read to determine
  * which of the available options is initially selected; its value
  * should match the "value" property of one of the child SelectItem
  * objects.
- * <p>
+ * </p><p>
  * On submit of the enclosing form, the value attribute's bound
  * property is updated to contain the "value" property from the
  * chosen SelectItem.
- * <p>
+ * </p><p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
- * <p> 
+ * </p> 
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlSelectOneMenu.java b/api/src/main/java/javax/faces/component/html/_HtmlSelectOneMenu.java
index 83d26fe..d0a0a46 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlSelectOneMenu.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlSelectOneMenu.java
@@ -27,18 +27,18 @@ import javax.faces.component.UISelectOne;
  * choices, of which only one can be chosen at a time. The available
  * choices are defined via child f:selectItem or f:selectItems
  * elements.
- * <p>
+ * </p><p>
  * The value attribute of this component is read to determine
  * which of the available options is initially selected; its value
  * should match the "value" property of one of the child SelectItem
  * objects.
- * <p>
+ * </p><p>
  * On submit of the enclosing form, the value attribute's bound property
  * is updated to contain the "value" property from the chosen SelectItem.
- * <p>
+ * </p><p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
- * <p> 
+ * </p> 
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/component/html/_HtmlSelectOneRadio.java b/api/src/main/java/javax/faces/component/html/_HtmlSelectOneRadio.java
index 3815477..063c65f 100644
--- a/api/src/main/java/javax/faces/component/html/_HtmlSelectOneRadio.java
+++ b/api/src/main/java/javax/faces/component/html/_HtmlSelectOneRadio.java
@@ -26,17 +26,17 @@ import javax.faces.component.UISelectOne;
  * Renders as an HTML table element, containing an input element for
  * each child f:selectItem or f:selectItems elements.  The input
  * elements are rendered as type radio.
- * <p>
+ * </p><p>
  * The value attribute of this component is read to determine
  * which of the available options is initially selected; its value should
  * match the "value" property of one of the child SelectItem objects.
- * <p>
+ * </p><p>
  * On submit of the enclosing form, the value attribute's bound property
  * is updated to contain the "value" property from the chosen SelectItem.
- * <p>
+ * </p><p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
- * <p> 
+ * </p> 
  * See Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  *
  * @JSFComponent
diff --git a/api/src/main/java/javax/faces/webapp/AttributeTag.java b/api/src/main/java/javax/faces/webapp/AttributeTag.java
index 45dacca..c5796da 100755
--- a/api/src/main/java/javax/faces/webapp/AttributeTag.java
+++ b/api/src/main/java/javax/faces/webapp/AttributeTag.java
@@ -37,15 +37,15 @@ import javax.servlet.jsp.tagext.TagSupport;
  * make any use of these but other objects such as custom renderers,
  * validators or action listeners can later retrieve the attribute
  * from the component by name.
- * <p>
+ * </p><p>
  * When the value is an EL expression, this tag has the same effect
  * as calling component.setValueBinding. A call to method
  * component.getAttributes().get(name) will then cause that
  * expression to be evaluated and the result of the expression is
  * returned, not the original EL expression string.
- * <p>
+ * </p><p>
  * See the javadoc for UIComponent.getAttributes for more details.
- * <p>
+ * </p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
  * 
diff --git a/api/src/main/java/javax/faces/webapp/ValidatorTag.java b/api/src/main/java/javax/faces/webapp/ValidatorTag.java
index eb15a21..e46dcfe 100755
--- a/api/src/main/java/javax/faces/webapp/ValidatorTag.java
+++ b/api/src/main/java/javax/faces/webapp/ValidatorTag.java
@@ -38,13 +38,13 @@ import javax.servlet.jsp.tagext.TagSupport;
  * <p>
  * Commonly associated with an h:inputText entity, but may be applied to
  * any input component.
- * <p>
+ * </p><p>
  * Some validators may allow the component to use attributes to define
  * component-specific validation constraints; see the f:attribute tag.
  * See also the "validator" attribute of all input components, which
  * allows a component to specify an arbitrary validation <i>method</i>
  * (rather than a registered validation type, as this tag does).
- * <p>
+ * </p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
  * 
diff --git a/impl/src/main/java/org/apache/myfaces/taglib/core/ValueChangeListenerTag.java b/impl/src/main/java/org/apache/myfaces/taglib/core/ValueChangeListenerTag.java
index 2c6277f..6bac965 100755
--- a/impl/src/main/java/org/apache/myfaces/taglib/core/ValueChangeListenerTag.java
+++ b/impl/src/main/java/org/apache/myfaces/taglib/core/ValueChangeListenerTag.java
@@ -42,7 +42,7 @@ import javax.servlet.jsp.tagext.TagSupport;
  * the object's processValueChange method is invoked.
  * <p>
  * Unless otherwise specified, all attributes accept static values
- * or EL expressions.
+ * or EL expressions.</p>
  * 
  * @JSFJspTag
  *   name="f:valueChangeListener"
diff --git a/impl/src/main/java/org/apache/myfaces/taglib/core/VerbatimTag.java b/impl/src/main/java/org/apache/myfaces/taglib/core/VerbatimTag.java
index 9ab0e9c..ed55fcf 100755
--- a/impl/src/main/java/org/apache/myfaces/taglib/core/VerbatimTag.java
+++ b/impl/src/main/java/org/apache/myfaces/taglib/core/VerbatimTag.java
@@ -32,7 +32,7 @@ import javax.servlet.jsp.tagext.BodyContent;
  * simply as literal text to be copied to the response.
  * <p>
  * Unless otherwise specified, all attributes accept static values
- * or EL expressions.
+ * or EL expressions.</p>
  * 
  * @JSFJspTag
  *   name="f:verbatim"
diff --git a/impl/src/main/java/org/apache/myfaces/taglib/core/ViewTag.java b/impl/src/main/java/org/apache/myfaces/taglib/core/ViewTag.java
index d529300..7713ad3 100755
--- a/impl/src/main/java/org/apache/myfaces/taglib/core/ViewTag.java
+++ b/impl/src/main/java/org/apache/myfaces/taglib/core/ViewTag.java
@@ -43,7 +43,7 @@ import java.util.Locale;
 /**
  * Handle the f:view tag.
  * <p>
- * This class works tightly with JspViewHandlerImpl; see that class for more information.
+ * This class works tightly with JspViewHandlerImpl; see that class for more information.</p>
  *  
  * @author Manfred Geiler (latest modification by $Author$)
  * @version $Revision$ $Date$

-- 
To stop receiving notification emails like this one, please contact
deki@apache.org.