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:44:55 UTC

svn commit: r628311 - /myfaces/core/trunk_1.2.x/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIOutput.xml

Author: skitching
Date: Sat Feb 16 06:44:54 2008
New Revision: 628311

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

Modified:
    myfaces/core/trunk_1.2.x/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIOutput.xml

Modified: myfaces/core/trunk_1.2.x/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIOutput.xml
URL: http://svn.apache.org/viewvc/myfaces/core/trunk_1.2.x/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIOutput.xml?rev=628311&r1=628310&r2=628311&view=diff
==============================================================================
--- myfaces/core/trunk_1.2.x/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIOutput.xml (original)
+++ myfaces/core/trunk_1.2.x/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIOutput.xml Sat Feb 16 06:44:54 2008
@@ -40,11 +40,12 @@
 
         <property>
             <description><![CDATA[
-              An expression that specifies the Converter for this component. If
-              the expression is a static string or is a value expression which
-              returns a String, the String is used as an ID to look up a
-              registered Converter. If the value expression returns a Converter,
-              then that object is used.
+              An expression that specifies the Converter for this component.
+              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>
             <property-name>converter</property-name>