You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sk...@apache.org on 2008/06/20 20:52:04 UTC

svn commit: r670032 - in /myfaces/core/trunk/api/src/main/java/javax/faces: component/UISelectItems.java webapp/AttributeTag.java webapp/ValidatorTag.java

Author: skitching
Date: Fri Jun 20 11:52:03 2008
New Revision: 670032

URL: http://svn.apache.org/viewvc?rev=670032&view=rev
Log:
Fix invalid javadoc

Modified:
    myfaces/core/trunk/api/src/main/java/javax/faces/component/UISelectItems.java
    myfaces/core/trunk/api/src/main/java/javax/faces/webapp/AttributeTag.java
    myfaces/core/trunk/api/src/main/java/javax/faces/webapp/ValidatorTag.java

Modified: myfaces/core/trunk/api/src/main/java/javax/faces/component/UISelectItems.java
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/api/src/main/java/javax/faces/component/UISelectItems.java?rev=670032&r1=670031&r2=670032&view=diff
==============================================================================
--- myfaces/core/trunk/api/src/main/java/javax/faces/component/UISelectItems.java (original)
+++ myfaces/core/trunk/api/src/main/java/javax/faces/component/UISelectItems.java Fri Jun 20 11:52:03 2008
@@ -79,15 +79,15 @@
     /**
      * An EL expression that specifies the contents of the selection list.
      * The expression can refer to one of the following:
-     * <ol>
-     *     <li>A single SelectItem</li>
-     *     <li>An array or Collection of SelectItem instances</li>
-     *     <li>A Map. The contents of the Map are used to create SelectItem
-     *         instances, where the SelectItem's label is the map's key value, 
-     *         and the SelectItem's value is the map's value. When using a
-     *         map, it is recommended that an ordered implementation such as
-     *         java.util.TreeMap is used.</li>
-     * </ol>
+     * <ol>
+     * <li>A single SelectItem</li>
+     * <li>An array or Collection of SelectItem instances</li>
+     * <li>A Map. The contents of the Map are used to create SelectItem
+     *     instances, where the SelectItem's label is the map's key value, 
+     *     and the SelectItem's value is the map's value. When using a
+     *     map, it is recommended that an ordered implementation such as
+     *     java.util.TreeMap is used.</li>
+     * </ol>
      * The value properties of each of the SelectItems must be of the same
      * basic type as the parent component's value.
      * 

Modified: myfaces/core/trunk/api/src/main/java/javax/faces/webapp/AttributeTag.java
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/api/src/main/java/javax/faces/webapp/AttributeTag.java?rev=670032&r1=670031&r2=670032&view=diff
==============================================================================
--- myfaces/core/trunk/api/src/main/java/javax/faces/webapp/AttributeTag.java (original)
+++ myfaces/core/trunk/api/src/main/java/javax/faces/webapp/AttributeTag.java Fri Jun 20 11:52:03 2008
@@ -28,7 +28,7 @@
 /**
  * This tag associates an attribute with the nearest parent
  * UIComponent. 
- * &lt;p&gt;
+ * <p>
  * When the value is not an EL expression, this tag has the same effect
  * as calling component.getAttributes.put(name, value). When the attribute
  * name specified matches a standard property of the component, that
@@ -37,15 +37,15 @@
  * 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.
- * &lt;p&gt;
+ * <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.
- * &lt;p&gt;
+ * <p>
  * See the javadoc for UIComponent.getAttributes for more details.
- * &lt;p&gt;
+ * <p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
  * 

Modified: myfaces/core/trunk/api/src/main/java/javax/faces/webapp/ValidatorTag.java
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/api/src/main/java/javax/faces/webapp/ValidatorTag.java?rev=670032&r1=670031&r2=670032&view=diff
==============================================================================
--- myfaces/core/trunk/api/src/main/java/javax/faces/webapp/ValidatorTag.java (original)
+++ myfaces/core/trunk/api/src/main/java/javax/faces/webapp/ValidatorTag.java Fri Jun 20 11:52:03 2008
@@ -35,16 +35,16 @@
  * submitted value and the conversion of that value to the required
  * type has succeeded then the specified validator type is
  * invoked to test the validity of the converted value.
- * &lt;p&gt;
+ * <p>
  * Commonly associated with an h:inputText entity, but may be applied to
  * any input component.
- * &lt;p&gt;
+ * <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 &lt;i&gt;method&lt;/i&gt;
+ * allows a component to specify an arbitrary validation <i>method</i>
  * (rather than a registered validation type, as this tag does).
- * &lt;p&gt;
+ * <p>
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
  *