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:40:42 UTC

svn commit: r628308 - /myfaces/tomahawk/trunk/core/src/main/tld/entities/ui_output_attributes.xml

Author: skitching
Date: Sat Feb 16 06:40:41 2008
New Revision: 628308

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

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

Modified: myfaces/tomahawk/trunk/core/src/main/tld/entities/ui_output_attributes.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/tld/entities/ui_output_attributes.xml?rev=628308&r1=628307&r2=628308&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/tld/entities/ui_output_attributes.xml (original)
+++ myfaces/tomahawk/trunk/core/src/main/tld/entities/ui_output_attributes.xml Sat Feb 16 06:40:41 2008
@@ -13,11 +13,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>