You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by jd...@apache.org on 2008/12/07 12:14:57 UTC

svn commit: r724121 - /wicket/trunk/wicket/src/main/java/org/apache/wicket/MarkupContainer.java

Author: jdonnerstag
Date: Sun Dec  7 03:14:56 2008
New Revision: 724121

URL: http://svn.apache.org/viewvc?rev=724121&view=rev
Log:
fixed 1963: Outdated JavaDoc content in MarkupContainer class

Modified:
    wicket/trunk/wicket/src/main/java/org/apache/wicket/MarkupContainer.java

Modified: wicket/trunk/wicket/src/main/java/org/apache/wicket/MarkupContainer.java
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket/src/main/java/org/apache/wicket/MarkupContainer.java?rev=724121&r1=724120&r2=724121&view=diff
==============================================================================
--- wicket/trunk/wicket/src/main/java/org/apache/wicket/MarkupContainer.java (original)
+++ wicket/trunk/wicket/src/main/java/org/apache/wicket/MarkupContainer.java Sun Dec  7 03:14:56 2008
@@ -46,7 +46,7 @@
  * <ul>
  * <li><b>Children </b>- Children can be added by calling the add() method, and they can be looked
  * up using a dotted path. For example, if a container called "a" held a nested container "b" which
- * held a nested component "c", then a.get("b.c") would return the Component with id "c". The number
+ * held a nested component "c", then a.get("b:c") would return the Component with id "c". The number
  * of children in a MarkupContainer can be determined by calling size(), and the whole hierarchy of
  * children held by a MarkupContainer can be traversed by calling visitChildren(), passing in an
  * implementation of Component.IVisitor.