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/02/16 15:38:43 UTC

svn commit: r628306 - /myfaces/core/trunk/impl/src/main/tld/entities/ui_output_attributes.xml

Author: skitching
Date: Sat Feb 16 06:38:32 2008
New Revision: 628306

URL: http://svn.apache.org/viewvc?rev=628306&view=rev
Log:
Fix incorrect documentation. The EL expression must always return Converter, never String.

Modified:
    myfaces/core/trunk/impl/src/main/tld/entities/ui_output_attributes.xml

Modified: myfaces/core/trunk/impl/src/main/tld/entities/ui_output_attributes.xml
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/impl/src/main/tld/entities/ui_output_attributes.xml?rev=628306&r1=628305&r2=628306&view=diff
==============================================================================
--- myfaces/core/trunk/impl/src/main/tld/entities/ui_output_attributes.xml (original)
+++ myfaces/core/trunk/impl/src/main/tld/entities/ui_output_attributes.xml Sat Feb 16 06:38:32 2008
@@ -30,11 +30,10 @@
     <rtexprvalue>false</rtexprvalue>
     <type>java.lang.String</type>
     <description>
-        An expression that specifies the Converter for this component.  
-        If the value binding expression is a String, the String is used
-        as an ID to look up a Converter. If the value binding expression
-        is a Converter, uses that instance as the converter.
-            
-        The value can either be a static value (ID case only) or an EL expression.
+        The value can either be a static value (ID) or an EL expression.
+        When a static id is specified, an instance of the converter type
+        registered with that id is used. When this is an EL expression,
+        the result of evaluating the expression must be an object that
+        implements the Converter interface.
     </description>
 </attribute>