You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by st...@apache.org on 2006/03/22 23:54:53 UTC

svn commit: r387962 - /beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/CheckBoxGroup.java

Author: steveh
Date: Wed Mar 22 14:54:51 2006
New Revision: 387962

URL: http://svn.apache.org/viewcvs?rev=387962&view=rev
Log:
Typo in javadoc.

Modified:
    beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/CheckBoxGroup.java

Modified: beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/CheckBoxGroup.java
URL: http://svn.apache.org/viewcvs/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/CheckBoxGroup.java?rev=387962&r1=387961&r2=387962&view=diff
==============================================================================
--- beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/CheckBoxGroup.java (original)
+++ beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/CheckBoxGroup.java Wed Mar 22 14:54:51 2006
@@ -78,11 +78,11 @@
  *
  * <p>For example, if you define a String[] object and get method in the Controller file...
  *
- * <pre>    public String[] availableOptions = {"option1", "option2", "option3"};
+ * <pre>    public String[] availableSelections = {"option1", "option2", "option3"};
  *
- *    public String[] getAvailableOptions()
+ *    public String[] getavailableSelections()
  *    {
- *        return this.availableOptions;
+ *        return this.availableSelections;
  *    }</pre>
  *
  * ...and reference this String[] from the <code>optionsDataSource</code> attribute...