You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by cr...@apache.org on 2007/06/25 23:44:02 UTC

svn commit: r550618 - in /beehive/trunk/netui/src: pageflow/org/apache/beehive/netui/script/el/util/ParseUtils.java tags-html/org/apache/beehive/netui/tags/html/RewriteName.java

Author: crogers
Date: Mon Jun 25 14:44:02 2007
New Revision: 550618

URL: http://svn.apache.org/viewvc?view=rev&rev=550618
Log:
Fix up some javadoc.


Modified:
    beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/script/el/util/ParseUtils.java
    beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/RewriteName.java

Modified: beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/script/el/util/ParseUtils.java
URL: http://svn.apache.org/viewvc/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/script/el/util/ParseUtils.java?view=diff&rev=550618&r1=550617&r2=550618
==============================================================================
--- beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/script/el/util/ParseUtils.java (original)
+++ beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/script/el/util/ParseUtils.java Mon Jun 25 14:44:02 2007
@@ -47,7 +47,7 @@
     }
 
     /**
-     * Parse the givne String into a {@link ParsedExpression}.
+     * Parse the given String into a {@link ParsedExpression}.
      * @param expression the expression
      * @return the parsed expression
      */

Modified: beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/RewriteName.java
URL: http://svn.apache.org/viewvc/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/RewriteName.java?view=diff&rev=550618&r1=550617&r2=550618
==============================================================================
--- beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/RewriteName.java (original)
+++ beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/RewriteName.java Mon Jun 25 14:44:02 2007
@@ -62,15 +62,16 @@
  * id attribute on the page).
  * </p>
  *
- * @example In this sample, we are setting the id attribute of the span tag to
- * 'foo'.  The actual value (the real id) that will be rendered in the HTML
+ * @example In this sample, we are setting the id attribute of the div tag to
+ * 'foo' so that it has a way to participate in the NetUI JavaScript scoping
+ * features.  The actual value (the real id) that will be rendered in the HTML
  * may change depending on the container where the web application resides.
- * For example, a Portal container may render &lt;span id="scope1.foo">
- * instead of &lt;span name="foo">. But the value 'foo' can be passed to
+ * For example, a Portal container may render &lt;div id="scope1.foo">
+ * instead of &lt;div name="foo">. But the value 'foo' can be passed to
  * <code>lookupIdByTagId( "foo", tag )</code> to find the rendered
  * value of the id attribute.
  *
- * <pre>    &lt;span id="&lt;netui:rewriteName name="foo"  forTagId="true"/&gt;"&gt;</pre>
+ * <pre>    &lt;div id="&lt;netui:rewriteName name="foo"  forTagId="true"/&gt;"&gt;</pre>
  * @netui:tag name="rewriteName" description="Allows a URL parameter name or tag id attribute to participate in rewriting before it is output into the HTML stream."
  */
 public class RewriteName