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 2006/10/11 05:50:36 UTC

svn commit: r462686 - /beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlGroupBaseTag.java

Author: crogers
Date: Tue Oct 10 20:50:36 2006
New Revision: 462686

URL: http://svn.apache.org/viewvc?view=rev&rev=462686
Log:
Fixed some Javadoc and code comments.


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

Modified: beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlGroupBaseTag.java
URL: http://svn.apache.org/viewvc/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlGroupBaseTag.java?view=diff&rev=462686&r1=462685&r2=462686
==============================================================================
--- beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlGroupBaseTag.java (original)
+++ beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlGroupBaseTag.java Tue Oct 10 20:50:36 2006
@@ -64,7 +64,7 @@
     protected Object _optionsDataSource;      // The value of the options data source.
     protected boolean _disabled;
 
-    private String _orientation;            // legal values "horizontal, virtical"
+    private String _orientation;            // legal values "horizontal, vertical"
     private Boolean _orientVal;             // Three state boolean if we are doing virtical layout
 
     private String _realName;                // The name that is the result of do naming
@@ -195,12 +195,13 @@
     /**
      * Set the orientation of the resulting options group.  The layout will be either <code>horizontal</code>
      * or <code>vertical</code>.  The default is <code>horizontal</code>.
-     * @param orientation true or false or an expression
-     * @jsptagref.attributedescription Set the orientation of the resulting options group.
+     * @param orientation "vertical" or "horizontal"
+     * @jsptagref.attributedescription Set the orientation of the resulting options group. Either "<code>horizontal</code>" or "<code>vertical</code>".  The default is <code>horizontal</code>.
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_orientation</i>
      * @netui:attribute required="false"  rtexprvalue="true"
-     * description="Set the orientation of the resulting options group."
+     * description="Set the orientation of the resulting options group. Either
+     * <code>horizontal</code> or <code>vertical</code>.  The default is <code>horizontal</code>."
      */
     public void setOrientation(String orientation)
     {