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 2007/10/05 10:53:21 UTC

svn commit: r582136 - /myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/frameworkAdapter/FrameworkAdapterInterface.java

Author: skitching
Date: Fri Oct  5 01:53:20 2007
New Revision: 582136

URL: http://svn.apache.org/viewvc?rev=582136&view=rev
Log:
Improve docs; clarify meaning of "getBean" method.

Modified:
    myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/frameworkAdapter/FrameworkAdapterInterface.java

Modified: myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/frameworkAdapter/FrameworkAdapterInterface.java
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/frameworkAdapter/FrameworkAdapterInterface.java?rev=582136&r1=582135&r2=582136&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/frameworkAdapter/FrameworkAdapterInterface.java (original)
+++ myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/frameworkAdapter/FrameworkAdapterInterface.java Fri Oct  5 01:53:20 2007
@@ -77,6 +77,10 @@
 	 * this may trigger the creation of the specified object. In frameworks that do not
 	 * support this, then the lookup may just return null if no object with the specified
 	 * name currently exists.
+	 * <p>
+	 * Note that no "property traversal" is required or expected; a name of "a.b.c"
+	 * is NOT evaluated as "property c of property b of bean a", but as the bean
+	 * with name 'a.b.c'.
 	 */
 	public Object getBean(String name);