You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by hu...@apache.org on 2006/02/10 19:09:02 UTC

svn commit: r376779 [18/18] - /struts/el/trunk/src/java/org/apache/strutsel/taglib/html/

Modified: struts/el/trunk/src/java/org/apache/strutsel/taglib/html/ELTextareaTag.java
URL: http://svn.apache.org/viewcvs/struts/el/trunk/src/java/org/apache/strutsel/taglib/html/ELTextareaTag.java?rev=376779&r1=376778&r2=376779&view=diff
==============================================================================
--- struts/el/trunk/src/java/org/apache/strutsel/taglib/html/ELTextareaTag.java (original)
+++ struts/el/trunk/src/java/org/apache/strutsel/taglib/html/ELTextareaTag.java Fri Feb 10 10:08:58 2006
@@ -1,589 +1,834 @@
 /*
- * $Id$ 
+ * $Id$
  *
  * Copyright 1999-2006 The Apache Software Foundation.
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.apache.strutsel.taglib.html;
 
 import org.apache.struts.taglib.html.TextareaTag;
-import javax.servlet.jsp.JspException;
 import org.apache.strutsel.taglib.utils.EvalHelper;
 
+import javax.servlet.jsp.JspException;
+
 /**
  * Custom tag for input fields of type "textarea".
  *
- *<p>
- * This class is a subclass of the class
- * <code>org.apache.struts.taglib.html.TextareaTag</code> which provides most of
- * the described functionality.  This subclass allows all attribute values to
- * be specified as expressions utilizing the JavaServer Pages Standard Library
- * expression language.
+ * <p> This class is a subclass of the class <code>org.apache.struts.taglib.html.TextareaTag</code>
+ * which provides most of the described functionality.  This subclass allows
+ * all attribute values to be specified as expressions utilizing the
+ * JavaServer Pages Standard Library expression language.
  *
  * @version $Rev$
  */
 public class ELTextareaTag extends TextareaTag {
-
     /**
-     * Instance variable mapped to "accessKey" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "accessKey" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String accessKeyExpr;
+
     /**
-     * Instance variable mapped to "alt" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "alt" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String altExpr;
+
     /**
-     * Instance variable mapped to "altKey" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "altKey" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String altKeyExpr;
+
     /**
-     * Instance variable mapped to "bundle" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "bundle" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String bundleExpr;
+
     /**
-     * Instance variable mapped to "cols" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "cols" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String colsExpr;
+
     /**
-     * Instance variable mapped to "disabled" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "disabled" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String disabledExpr;
+
     /**
-     * Instance variable mapped to "errorKey" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "errorKey" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String errorKeyExpr;
+
     /**
-     * Instance variable mapped to "errorStyle" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "errorStyle" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String errorStyleExpr;
+
     /**
-     * Instance variable mapped to "errorStyleClass" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "errorStyleClass" tag attribute. (Mapping
+     * set in associated BeanInfo class.)
      */
     private String errorStyleClassExpr;
+
     /**
-     * Instance variable mapped to "errorStyleId" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "errorStyleId" tag attribute. (Mapping set
+     * in associated BeanInfo class.)
      */
     private String errorStyleIdExpr;
+
     /**
-     * Instance variable mapped to "indexed" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "indexed" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String indexedExpr;
+
     /**
-     * Instance variable mapped to "name" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "name" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String nameExpr;
+
     /**
-     * Instance variable mapped to "onblur" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "onblur" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String onblurExpr;
+
     /**
-     * Instance variable mapped to "onchange" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "onchange" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String onchangeExpr;
+
     /**
-     * Instance variable mapped to "onclick" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "onclick" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String onclickExpr;
+
     /**
-     * Instance variable mapped to "ondblclick" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "ondblclick" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String ondblclickExpr;
+
     /**
-     * Instance variable mapped to "onfocus" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "onfocus" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String onfocusExpr;
+
     /**
-     * Instance variable mapped to "onkeydown" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "onkeydown" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String onkeydownExpr;
+
     /**
-     * Instance variable mapped to "onkeypress" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "onkeypress" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String onkeypressExpr;
+
     /**
-     * Instance variable mapped to "onkeyup" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "onkeyup" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String onkeyupExpr;
+
     /**
-     * Instance variable mapped to "onmousedown" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "onmousedown" tag attribute. (Mapping set
+     * in associated BeanInfo class.)
      */
     private String onmousedownExpr;
+
     /**
-     * Instance variable mapped to "onmousemove" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "onmousemove" tag attribute. (Mapping set
+     * in associated BeanInfo class.)
      */
     private String onmousemoveExpr;
+
     /**
-     * Instance variable mapped to "onmouseout" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "onmouseout" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String onmouseoutExpr;
+
     /**
-     * Instance variable mapped to "onmouseover" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "onmouseover" tag attribute. (Mapping set
+     * in associated BeanInfo class.)
      */
     private String onmouseoverExpr;
+
     /**
-     * Instance variable mapped to "onmouseup" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "onmouseup" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String onmouseupExpr;
+
     /**
-     * Instance variable mapped to "property" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "property" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String propertyExpr;
+
     /**
-     * Instance variable mapped to "readonly" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "readonly" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String readonlyExpr;
+
     /**
-     * Instance variable mapped to "rows" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "rows" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String rowsExpr;
+
     /**
-     * Instance variable mapped to "style" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "style" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String styleExpr;
+
     /**
-     * Instance variable mapped to "size" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "size" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String sizeExpr;
+
     /**
-     * Instance variable mapped to "styleClass" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "styleClass" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String styleClassExpr;
+
     /**
-     * Instance variable mapped to "styleId" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "styleId" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String styleIdExpr;
+
     /**
-     * Instance variable mapped to "tabindex" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "tabindex" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String tabindexExpr;
+
     /**
-     * Instance variable mapped to "title" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "title" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String titleExpr;
+
     /**
-     * Instance variable mapped to "titleKey" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "titleKey" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String titleKeyExpr;
+
     /**
-     * Instance variable mapped to "value" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Instance variable mapped to "value" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
     private String valueExpr;
 
     /**
-     * Getter method for "accessKey" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "accessKey" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getAccesskeyExpr() { return (accessKeyExpr); }
+    public String getAccesskeyExpr() {
+        return (accessKeyExpr);
+    }
+
     /**
-     * Getter method for "alt" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "alt" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getAltExpr() { return (altExpr); }
+    public String getAltExpr() {
+        return (altExpr);
+    }
+
     /**
-     * Getter method for "altKey" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "altKey" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getAltKeyExpr() { return (altKeyExpr); }
+    public String getAltKeyExpr() {
+        return (altKeyExpr);
+    }
+
     /**
-     * Getter method for "bundle" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "bundle" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getBundleExpr() { return (bundleExpr); }
+    public String getBundleExpr() {
+        return (bundleExpr);
+    }
+
     /**
-     * Getter method for "cols" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "cols" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getColsExpr() { return (colsExpr); }
+    public String getColsExpr() {
+        return (colsExpr);
+    }
+
     /**
-     * Getter method for "disabled" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "disabled" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getDisabledExpr() { return (disabledExpr); }
+    public String getDisabledExpr() {
+        return (disabledExpr);
+    }
+
     /**
-     * Getter method for "errorKey" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "errorKey" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getErrorKeyExpr() { return (errorKeyExpr); }
+    public String getErrorKeyExpr() {
+        return (errorKeyExpr);
+    }
+
     /**
-     * Getter method for "errorStyle" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "errorStyle" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
-    public String getErrorStyleExpr() { return (errorStyleExpr); }
+    public String getErrorStyleExpr() {
+        return (errorStyleExpr);
+    }
+
     /**
-     * Getter method for "errorStyleClass" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "errorStyleClass" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
-    public String getErrorStyleClassExpr() { return (errorStyleClassExpr); }
+    public String getErrorStyleClassExpr() {
+        return (errorStyleClassExpr);
+    }
+
     /**
-     * Getter method for "errorStyleId" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "errorStyleId" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
-    public String getErrorStyleIdExpr() { return (errorStyleIdExpr); }
+    public String getErrorStyleIdExpr() {
+        return (errorStyleIdExpr);
+    }
+
     /**
-     * Getter method for "indexed" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "indexed" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getIndexedExpr() { return (indexedExpr); }
+    public String getIndexedExpr() {
+        return (indexedExpr);
+    }
+
     /**
-     * Getter method for "name" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "name" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getNameExpr() { return (nameExpr); }
+    public String getNameExpr() {
+        return (nameExpr);
+    }
+
     /**
-     * Getter method for "onblur" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "onblur" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getOnblurExpr() { return (onblurExpr); }
+    public String getOnblurExpr() {
+        return (onblurExpr);
+    }
+
     /**
-     * Getter method for "onchange" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "onchange" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getOnchangeExpr() { return (onchangeExpr); }
+    public String getOnchangeExpr() {
+        return (onchangeExpr);
+    }
+
     /**
-     * Getter method for "onclick" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "onclick" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getOnclickExpr() { return (onclickExpr); }
+    public String getOnclickExpr() {
+        return (onclickExpr);
+    }
+
     /**
-     * Getter method for "ondblclick" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "ondblclick" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
-    public String getOndblclickExpr() { return (ondblclickExpr); }
+    public String getOndblclickExpr() {
+        return (ondblclickExpr);
+    }
+
     /**
-     * Getter method for "onfocus" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "onfocus" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getOnfocusExpr() { return (onfocusExpr); }
+    public String getOnfocusExpr() {
+        return (onfocusExpr);
+    }
+
     /**
-     * Getter method for "onkeydown" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "onkeydown" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getOnkeydownExpr() { return (onkeydownExpr); }
+    public String getOnkeydownExpr() {
+        return (onkeydownExpr);
+    }
+
     /**
-     * Getter method for "onkeypress" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "onkeypress" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
-    public String getOnkeypressExpr() { return (onkeypressExpr); }
+    public String getOnkeypressExpr() {
+        return (onkeypressExpr);
+    }
+
     /**
-     * Getter method for "onkeyup" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "onkeyup" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getOnkeyupExpr() { return (onkeyupExpr); }
+    public String getOnkeyupExpr() {
+        return (onkeyupExpr);
+    }
+
     /**
-     * Getter method for "onmousedown" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "onmousedown" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
-    public String getOnmousedownExpr() { return (onmousedownExpr); }
+    public String getOnmousedownExpr() {
+        return (onmousedownExpr);
+    }
+
     /**
-     * Getter method for "onmousemove" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "onmousemove" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
-    public String getOnmousemoveExpr() { return (onmousemoveExpr); }
+    public String getOnmousemoveExpr() {
+        return (onmousemoveExpr);
+    }
+
     /**
-     * Getter method for "onmouseout" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "onmouseout" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
-    public String getOnmouseoutExpr() { return (onmouseoutExpr); }
+    public String getOnmouseoutExpr() {
+        return (onmouseoutExpr);
+    }
+
     /**
-     * Getter method for "onmouseover" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "onmouseover" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
-    public String getOnmouseoverExpr() { return (onmouseoverExpr); }
+    public String getOnmouseoverExpr() {
+        return (onmouseoverExpr);
+    }
+
     /**
-     * Getter method for "onmouseup" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "onmouseup" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getOnmouseupExpr() { return (onmouseupExpr); }
+    public String getOnmouseupExpr() {
+        return (onmouseupExpr);
+    }
+
     /**
-     * Getter method for "property" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "property" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getPropertyExpr() { return (propertyExpr); }
+    public String getPropertyExpr() {
+        return (propertyExpr);
+    }
+
     /**
-     * Getter method for "readonly" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "readonly" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getReadonlyExpr() { return (readonlyExpr); }
+    public String getReadonlyExpr() {
+        return (readonlyExpr);
+    }
+
     /**
-     * Getter method for "rows" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "rows" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getRowsExpr() { return (rowsExpr); }
+    public String getRowsExpr() {
+        return (rowsExpr);
+    }
+
     /**
-     * Getter method for "style" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "style" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getStyleExpr() { return (styleExpr); }
+    public String getStyleExpr() {
+        return (styleExpr);
+    }
+
     /**
-     * Getter method for "size" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "size" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getSizeExpr() { return (sizeExpr); }
+    public String getSizeExpr() {
+        return (sizeExpr);
+    }
+
     /**
-     * Getter method for "styleClass" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "styleClass" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
-    public String getStyleClassExpr() { return (styleClassExpr); }
+    public String getStyleClassExpr() {
+        return (styleClassExpr);
+    }
+
     /**
-     * Getter method for "styleId" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "styleId" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getStyleIdExpr() { return (styleIdExpr); }
+    public String getStyleIdExpr() {
+        return (styleIdExpr);
+    }
+
     /**
-     * Getter method for "tabindex" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "tabindex" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getTabindexExpr() { return (tabindexExpr); }
+    public String getTabindexExpr() {
+        return (tabindexExpr);
+    }
+
     /**
-     * Getter method for "title" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "title" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getTitleExpr() { return (titleExpr); }
+    public String getTitleExpr() {
+        return (titleExpr);
+    }
+
     /**
-     * Getter method for "titleKey" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "titleKey" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getTitleKeyExpr() { return (titleKeyExpr); }
+    public String getTitleKeyExpr() {
+        return (titleKeyExpr);
+    }
+
     /**
-     * Getter method for "value" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Getter method for "value" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public String getValueExpr() { return (valueExpr); }
+    public String getValueExpr() {
+        return (valueExpr);
+    }
 
     /**
-     * Setter method for "accessKey" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "accessKey" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setAccesskeyExpr(String accessKeyExpr) { this.accessKeyExpr = accessKeyExpr; }
+    public void setAccesskeyExpr(String accessKeyExpr) {
+        this.accessKeyExpr = accessKeyExpr;
+    }
+
     /**
-     * Setter method for "alt" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "alt" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setAltExpr(String altExpr) { this.altExpr = altExpr; }
+    public void setAltExpr(String altExpr) {
+        this.altExpr = altExpr;
+    }
+
     /**
-     * Setter method for "altKey" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "altKey" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setAltKeyExpr(String altKeyExpr) { this.altKeyExpr = altKeyExpr; }
+    public void setAltKeyExpr(String altKeyExpr) {
+        this.altKeyExpr = altKeyExpr;
+    }
+
     /**
-     * Setter method for "bundle" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "bundle" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setBundleExpr(String bundleExpr) { this.bundleExpr = bundleExpr; }
+    public void setBundleExpr(String bundleExpr) {
+        this.bundleExpr = bundleExpr;
+    }
+
     /**
-     * Setter method for "cols" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "cols" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setColsExpr(String colsExpr) { this.colsExpr = colsExpr; }
+    public void setColsExpr(String colsExpr) {
+        this.colsExpr = colsExpr;
+    }
+
     /**
-     * Setter method for "disabled" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "disabled" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setDisabledExpr(String disabledExpr) { this.disabledExpr = disabledExpr; }
+    public void setDisabledExpr(String disabledExpr) {
+        this.disabledExpr = disabledExpr;
+    }
+
     /**
-     * Setter method for "errorKey" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "errorKey" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setErrorKeyExpr(String errorKeyExpr) { this.errorKeyExpr = errorKeyExpr; }
+    public void setErrorKeyExpr(String errorKeyExpr) {
+        this.errorKeyExpr = errorKeyExpr;
+    }
+
     /**
-     * Setter method for "errorStyle" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "errorStyle" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
-    public void setErrorStyleExpr(String errorStyleExpr) { this.errorStyleExpr = errorStyleExpr; }
+    public void setErrorStyleExpr(String errorStyleExpr) {
+        this.errorStyleExpr = errorStyleExpr;
+    }
+
     /**
-     * Setter method for "errorStyleClass" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "errorStyleClass" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
-    public void setErrorStyleClassExpr(String errorStyleClassExpr) { this.errorStyleClassExpr = errorStyleClassExpr; }
+    public void setErrorStyleClassExpr(String errorStyleClassExpr) {
+        this.errorStyleClassExpr = errorStyleClassExpr;
+    }
+
     /**
-     * Setter method for "errorStyleId" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "errorStyleId" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
-    public void setErrorStyleIdExpr(String errorStyleIdExpr) { this.errorStyleIdExpr = errorStyleIdExpr; }
+    public void setErrorStyleIdExpr(String errorStyleIdExpr) {
+        this.errorStyleIdExpr = errorStyleIdExpr;
+    }
+
     /**
-     * Setter method for "indexed" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "indexed" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setIndexedExpr(String indexedExpr) { this.indexedExpr = indexedExpr; }
+    public void setIndexedExpr(String indexedExpr) {
+        this.indexedExpr = indexedExpr;
+    }
+
     /**
-     * Setter method for "name" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "name" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setNameExpr(String nameExpr) { this.nameExpr = nameExpr; }
+    public void setNameExpr(String nameExpr) {
+        this.nameExpr = nameExpr;
+    }
+
     /**
-     * Setter method for "onblur" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "onblur" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setOnblurExpr(String onblurExpr) { this.onblurExpr = onblurExpr; }
+    public void setOnblurExpr(String onblurExpr) {
+        this.onblurExpr = onblurExpr;
+    }
+
     /**
-     * Setter method for "onchange" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "onchange" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setOnchangeExpr(String onchangeExpr) { this.onchangeExpr = onchangeExpr; }
+    public void setOnchangeExpr(String onchangeExpr) {
+        this.onchangeExpr = onchangeExpr;
+    }
+
     /**
-     * Setter method for "onclick" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "onclick" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setOnclickExpr(String onclickExpr) { this.onclickExpr = onclickExpr; }
+    public void setOnclickExpr(String onclickExpr) {
+        this.onclickExpr = onclickExpr;
+    }
+
     /**
-     * Setter method for "ondblclick" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "ondblclick" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
-    public void setOndblclickExpr(String ondblclickExpr) { this.ondblclickExpr = ondblclickExpr; }
+    public void setOndblclickExpr(String ondblclickExpr) {
+        this.ondblclickExpr = ondblclickExpr;
+    }
+
     /**
-     * Setter method for "onfocus" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "onfocus" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setOnfocusExpr(String onfocusExpr) { this.onfocusExpr = onfocusExpr; }
+    public void setOnfocusExpr(String onfocusExpr) {
+        this.onfocusExpr = onfocusExpr;
+    }
+
     /**
-     * Setter method for "onkeydown" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "onkeydown" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setOnkeydownExpr(String onkeydownExpr) { this.onkeydownExpr = onkeydownExpr; }
+    public void setOnkeydownExpr(String onkeydownExpr) {
+        this.onkeydownExpr = onkeydownExpr;
+    }
+
     /**
-     * Setter method for "onkeypress" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "onkeypress" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
-    public void setOnkeypressExpr(String onkeypressExpr) { this.onkeypressExpr = onkeypressExpr; }
+    public void setOnkeypressExpr(String onkeypressExpr) {
+        this.onkeypressExpr = onkeypressExpr;
+    }
+
     /**
-     * Setter method for "onkeyup" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "onkeyup" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setOnkeyupExpr(String onkeyupExpr) { this.onkeyupExpr = onkeyupExpr; }
+    public void setOnkeyupExpr(String onkeyupExpr) {
+        this.onkeyupExpr = onkeyupExpr;
+    }
+
     /**
-     * Setter method for "onmousedown" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "onmousedown" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
-    public void setOnmousedownExpr(String onmousedownExpr) { this.onmousedownExpr = onmousedownExpr; }
+    public void setOnmousedownExpr(String onmousedownExpr) {
+        this.onmousedownExpr = onmousedownExpr;
+    }
+
     /**
-     * Setter method for "onmousemove" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "onmousemove" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
-    public void setOnmousemoveExpr(String onmousemoveExpr) { this.onmousemoveExpr = onmousemoveExpr; }
+    public void setOnmousemoveExpr(String onmousemoveExpr) {
+        this.onmousemoveExpr = onmousemoveExpr;
+    }
+
     /**
-     * Setter method for "onmouseout" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "onmouseout" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
-    public void setOnmouseoutExpr(String onmouseoutExpr) { this.onmouseoutExpr = onmouseoutExpr; }
+    public void setOnmouseoutExpr(String onmouseoutExpr) {
+        this.onmouseoutExpr = onmouseoutExpr;
+    }
+
     /**
-     * Setter method for "onmouseover" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "onmouseover" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
-    public void setOnmouseoverExpr(String onmouseoverExpr) { this.onmouseoverExpr = onmouseoverExpr; }
+    public void setOnmouseoverExpr(String onmouseoverExpr) {
+        this.onmouseoverExpr = onmouseoverExpr;
+    }
+
     /**
-     * Setter method for "onmouseup" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "onmouseup" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setOnmouseupExpr(String onmouseupExpr) { this.onmouseupExpr = onmouseupExpr; }
+    public void setOnmouseupExpr(String onmouseupExpr) {
+        this.onmouseupExpr = onmouseupExpr;
+    }
+
     /**
-     * Setter method for "property" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "property" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setPropertyExpr(String propertyExpr) { this.propertyExpr = propertyExpr; }
+    public void setPropertyExpr(String propertyExpr) {
+        this.propertyExpr = propertyExpr;
+    }
+
     /**
-     * Setter method for "readonly" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "readonly" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setReadonlyExpr(String readonlyExpr) { this.readonlyExpr = readonlyExpr; }
+    public void setReadonlyExpr(String readonlyExpr) {
+        this.readonlyExpr = readonlyExpr;
+    }
+
     /**
-     * Setter method for "rows" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "rows" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setRowsExpr(String rowsExpr) { this.rowsExpr = rowsExpr; }
+    public void setRowsExpr(String rowsExpr) {
+        this.rowsExpr = rowsExpr;
+    }
+
     /**
-     * Setter method for "style" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "style" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setStyleExpr(String styleExpr) { this.styleExpr = styleExpr; }
+    public void setStyleExpr(String styleExpr) {
+        this.styleExpr = styleExpr;
+    }
+
     /**
-     * Setter method for "size" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "size" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setSizeExpr(String sizeExpr) { this.sizeExpr = sizeExpr; }
+    public void setSizeExpr(String sizeExpr) {
+        this.sizeExpr = sizeExpr;
+    }
+
     /**
-     * Setter method for "styleClass" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "styleClass" tag attribute. (Mapping set in
+     * associated BeanInfo class.)
      */
-    public void setStyleClassExpr(String styleClassExpr) { this.styleClassExpr = styleClassExpr; }
+    public void setStyleClassExpr(String styleClassExpr) {
+        this.styleClassExpr = styleClassExpr;
+    }
+
     /**
-     * Setter method for "styleId" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "styleId" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setStyleIdExpr(String styleIdExpr) { this.styleIdExpr = styleIdExpr; }
+    public void setStyleIdExpr(String styleIdExpr) {
+        this.styleIdExpr = styleIdExpr;
+    }
+
     /**
-     * Setter method for "tabindex" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "tabindex" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setTabindexExpr(String tabindexExpr) { this.tabindexExpr = tabindexExpr; }
+    public void setTabindexExpr(String tabindexExpr) {
+        this.tabindexExpr = tabindexExpr;
+    }
+
     /**
-     * Setter method for "title" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "title" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setTitleExpr(String titleExpr) { this.titleExpr = titleExpr; }
+    public void setTitleExpr(String titleExpr) {
+        this.titleExpr = titleExpr;
+    }
+
     /**
-     * Setter method for "titleKey" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "titleKey" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setTitleKeyExpr(String titleKeyExpr) { this.titleKeyExpr = titleKeyExpr; }
+    public void setTitleKeyExpr(String titleKeyExpr) {
+        this.titleKeyExpr = titleKeyExpr;
+    }
+
     /**
-     * Setter method for "value" tag attribute.
-     * (Mapping set in associated BeanInfo class.)
+     * Setter method for "value" tag attribute. (Mapping set in associated
+     * BeanInfo class.)
      */
-    public void setValueExpr(String valueExpr) { this.valueExpr = valueExpr; }
+    public void setValueExpr(String valueExpr) {
+        this.valueExpr = valueExpr;
+    }
 
     /**
      * Resets attribute values for tag reuse.
      */
-    public void release()
-    {
+    public void release() {
         super.release();
         setAccesskeyExpr(null);
         setAltExpr(null);
@@ -626,165 +871,231 @@
     /**
      * Process the start tag.
      *
-     * @exception JspException if a JSP exception has occurred
+     * @throws JspException if a JSP exception has occurred
      */
     public int doStartTag() throws JspException {
         evaluateExpressions();
-        return(super.doStartTag());
+
+        return (super.doStartTag());
     }
-    
+
     /**
      * Processes all attribute values which use the JSTL expression evaluation
      * engine to determine their values.
      *
-     * @exception JspException if a JSP exception has occurred
+     * @throws JspException if a JSP exception has occurred
      */
-    private void evaluateExpressions() throws JspException {
-        String  string  = null;
-        Boolean bool    = null;
-
-        if ((string = EvalHelper.evalString("accessKey", getAccesskeyExpr(),
-                                            this, pageContext)) != null)
+    private void evaluateExpressions()
+        throws JspException {
+        String string = null;
+        Boolean bool = null;
+
+        if ((string =
+                EvalHelper.evalString("accessKey", getAccesskeyExpr(), this,
+                    pageContext)) != null) {
             setAccesskey(string);
+        }
 
-        if ((string = EvalHelper.evalString("alt", getAltExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("alt", getAltExpr(), this, pageContext)) != null) {
             setAlt(string);
+        }
 
-        if ((string = EvalHelper.evalString("altKey", getAltKeyExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("altKey", getAltKeyExpr(), this,
+                    pageContext)) != null) {
             setAltKey(string);
+        }
 
-        if ((string = EvalHelper.evalString("bundle", getBundleExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("bundle", getBundleExpr(), this,
+                    pageContext)) != null) {
             setBundle(string);
+        }
 
-        if ((string = EvalHelper.evalString("cols", getColsExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("cols", getColsExpr(), this, pageContext)) != null) {
             setCols(string);
+        }
 
-        if ((bool = EvalHelper.evalBoolean("disabled", getDisabledExpr(),
-                                           this, pageContext)) != null)
+        if ((bool =
+                EvalHelper.evalBoolean("disabled", getDisabledExpr(), this,
+                    pageContext)) != null) {
             setDisabled(bool.booleanValue());
+        }
 
-        if ((string = EvalHelper.evalString("errorKey", getErrorKeyExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("errorKey", getErrorKeyExpr(), this,
+                    pageContext)) != null) {
             setErrorKey(string);
+        }
 
-        if ((string = EvalHelper.evalString("errorStyle", getErrorStyleExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("errorStyle", getErrorStyleExpr(), this,
+                    pageContext)) != null) {
             setErrorStyle(string);
+        }
 
-        if ((string = EvalHelper.evalString("errorStyleClass", getErrorStyleClassExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("errorStyleClass",
+                    getErrorStyleClassExpr(), this, pageContext)) != null) {
             setErrorStyleClass(string);
+        }
 
-        if ((string = EvalHelper.evalString("errorStyleId", getErrorStyleIdExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("errorStyleId", getErrorStyleIdExpr(),
+                    this, pageContext)) != null) {
             setErrorStyleId(string);
+        }
 
-        if ((bool = EvalHelper.evalBoolean("indexed", getIndexedExpr(),
-                                           this, pageContext)) != null)
+        if ((bool =
+                EvalHelper.evalBoolean("indexed", getIndexedExpr(), this,
+                    pageContext)) != null) {
             setIndexed(bool.booleanValue());
+        }
 
-        if ((string = EvalHelper.evalString("name", getNameExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("name", getNameExpr(), this, pageContext)) != null) {
             setName(string);
+        }
 
-        if ((string = EvalHelper.evalString("onblur", getOnblurExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("onblur", getOnblurExpr(), this,
+                    pageContext)) != null) {
             setOnblur(string);
+        }
 
-        if ((string = EvalHelper.evalString("onchange", getOnchangeExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("onchange", getOnchangeExpr(), this,
+                    pageContext)) != null) {
             setOnchange(string);
+        }
 
-        if ((string = EvalHelper.evalString("onclick", getOnclickExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("onclick", getOnclickExpr(), this,
+                    pageContext)) != null) {
             setOnclick(string);
+        }
 
-        if ((string = EvalHelper.evalString("ondblclick", getOndblclickExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("ondblclick", getOndblclickExpr(), this,
+                    pageContext)) != null) {
             setOndblclick(string);
+        }
 
-        if ((string = EvalHelper.evalString("onfocus", getOnfocusExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("onfocus", getOnfocusExpr(), this,
+                    pageContext)) != null) {
             setOnfocus(string);
+        }
 
-        if ((string = EvalHelper.evalString("onkeydown", getOnkeydownExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("onkeydown", getOnkeydownExpr(), this,
+                    pageContext)) != null) {
             setOnkeydown(string);
+        }
 
-        if ((string = EvalHelper.evalString("onkeypress", getOnkeypressExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("onkeypress", getOnkeypressExpr(), this,
+                    pageContext)) != null) {
             setOnkeypress(string);
+        }
 
-        if ((string = EvalHelper.evalString("onkeyup", getOnkeyupExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("onkeyup", getOnkeyupExpr(), this,
+                    pageContext)) != null) {
             setOnkeyup(string);
+        }
 
-        if ((string = EvalHelper.evalString("onmousedown", getOnmousedownExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("onmousedown", getOnmousedownExpr(),
+                    this, pageContext)) != null) {
             setOnmousedown(string);
+        }
 
-        if ((string = EvalHelper.evalString("onmousemove", getOnmousemoveExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("onmousemove", getOnmousemoveExpr(),
+                    this, pageContext)) != null) {
             setOnmousemove(string);
+        }
 
-        if ((string = EvalHelper.evalString("onmouseout", getOnmouseoutExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("onmouseout", getOnmouseoutExpr(), this,
+                    pageContext)) != null) {
             setOnmouseout(string);
+        }
 
-        if ((string = EvalHelper.evalString("onmouseover", getOnmouseoverExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("onmouseover", getOnmouseoverExpr(),
+                    this, pageContext)) != null) {
             setOnmouseover(string);
+        }
 
-        if ((string = EvalHelper.evalString("onmouseup", getOnmouseupExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("onmouseup", getOnmouseupExpr(), this,
+                    pageContext)) != null) {
             setOnmouseup(string);
+        }
 
-        if ((string = EvalHelper.evalString("property", getPropertyExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("property", getPropertyExpr(), this,
+                    pageContext)) != null) {
             setProperty(string);
+        }
 
-        if ((bool = EvalHelper.evalBoolean("readonly", getReadonlyExpr(),
-                                           this, pageContext)) != null)
+        if ((bool =
+                EvalHelper.evalBoolean("readonly", getReadonlyExpr(), this,
+                    pageContext)) != null) {
             setReadonly(bool.booleanValue());
+        }
 
-        if ((string = EvalHelper.evalString("rows", getRowsExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("rows", getRowsExpr(), this, pageContext)) != null) {
             setRows(string);
+        }
 
-        if ((string = EvalHelper.evalString("style", getStyleExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("style", getStyleExpr(), this, pageContext)) != null) {
             setStyle(string);
+        }
 
-        if ((string = EvalHelper.evalString("size", getSizeExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("size", getSizeExpr(), this, pageContext)) != null) {
             setSize(string);
+        }
 
-        if ((string = EvalHelper.evalString("styleClass", getStyleClassExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("styleClass", getStyleClassExpr(), this,
+                    pageContext)) != null) {
             setStyleClass(string);
+        }
 
-        if ((string = EvalHelper.evalString("styleId", getStyleIdExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("styleId", getStyleIdExpr(), this,
+                    pageContext)) != null) {
             setStyleId(string);
+        }
 
-        if ((string = EvalHelper.evalString("tabindex", getTabindexExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("tabindex", getTabindexExpr(), this,
+                    pageContext)) != null) {
             setTabindex(string);
+        }
 
-        if ((string = EvalHelper.evalString("title", getTitleExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("title", getTitleExpr(), this, pageContext)) != null) {
             setTitle(string);
+        }
 
-        if ((string = EvalHelper.evalString("titleKey", getTitleKeyExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("titleKey", getTitleKeyExpr(), this,
+                    pageContext)) != null) {
             setTitleKey(string);
+        }
 
-        if ((string = EvalHelper.evalString("value", getValueExpr(),
-                                            this, pageContext)) != null)
+        if ((string =
+                EvalHelper.evalString("value", getValueExpr(), this, pageContext)) != null) {
             setValue(string);
+        }
     }
 }

Modified: struts/el/trunk/src/java/org/apache/strutsel/taglib/html/ELTextareaTagBeanInfo.java
URL: http://svn.apache.org/viewcvs/struts/el/trunk/src/java/org/apache/strutsel/taglib/html/ELTextareaTagBeanInfo.java?rev=376779&r1=376778&r2=376779&view=diff
==============================================================================
--- struts/el/trunk/src/java/org/apache/strutsel/taglib/html/ELTextareaTagBeanInfo.java (original)
+++ struts/el/trunk/src/java/org/apache/strutsel/taglib/html/ELTextareaTagBeanInfo.java Fri Feb 10 10:08:58 2006
@@ -1,190 +1,255 @@
 /*
- * $Id$ 
+ * $Id$
  *
  * Copyright 1999-2004 The Apache Software Foundation.
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.apache.strutsel.taglib.html;
 
-import java.beans.PropertyDescriptor;
 import java.beans.IntrospectionException;
-import java.util.ArrayList;
+import java.beans.PropertyDescriptor;
 import java.beans.SimpleBeanInfo;
 
+import java.util.ArrayList;
+
 /**
  * This is the <code>BeanInfo</code> descriptor for the
  * <code>org.apache.strutsel.taglib.html.ELTextareaTag</code> class.  It is
  * needed to override the default mapping of custom tag attribute names to
- * class attribute names.
- *<p>
- * This is because the value of the unevaluated EL expression has to be kept
- * separately from the evaluated value, which is stored in the base class. This
- * is related to the fact that the JSP compiler can choose to reuse different
- * tag instances if they received the same original attribute values, and the
- * JSP compiler can choose to not re-call the setter methods, because it can
- * assume the same values are already set.
+ * class attribute names. <p> This is because the value of the unevaluated EL
+ * expression has to be kept separately from the evaluated value, which is
+ * stored in the base class. This is related to the fact that the JSP compiler
+ * can choose to reuse different tag instances if they received the same
+ * original attribute values, and the JSP compiler can choose to not re-call
+ * the setter methods, because it can assume the same values are already set.
  */
-public class ELTextareaTagBeanInfo extends SimpleBeanInfo
-{
-    public  PropertyDescriptor[] getPropertyDescriptors()
-    {
+public class ELTextareaTagBeanInfo extends SimpleBeanInfo {
+    public PropertyDescriptor[] getPropertyDescriptors() {
         ArrayList proplist = new ArrayList();
 
         try {
-            proplist.add(new PropertyDescriptor("accesskey", ELTextareaTag.class,
-                                                null, "setAccesskeyExpr"));
-        } catch (IntrospectionException ex) {}
+            proplist.add(new PropertyDescriptor("accesskey",
+                    ELTextareaTag.class, null, "setAccesskeyExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
             proplist.add(new PropertyDescriptor("alt", ELTextareaTag.class,
-                                                null, "setAltExpr"));
-        } catch (IntrospectionException ex) {}
+                    null, "setAltExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
             proplist.add(new PropertyDescriptor("altKey", ELTextareaTag.class,
-                                                null, "setAltKeyExpr"));
-        } catch (IntrospectionException ex) {}
+                    null, "setAltKeyExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
             proplist.add(new PropertyDescriptor("bundle", ELTextareaTag.class,
-                                                null, "setBundleExpr"));
-        } catch (IntrospectionException ex) {}
+                    null, "setBundleExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
             proplist.add(new PropertyDescriptor("cols", ELTextareaTag.class,
-                                                null, "setColsExpr"));
-        } catch (IntrospectionException ex) {}
+                    null, "setColsExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
-            proplist.add(new PropertyDescriptor("disabled", ELTextareaTag.class,
-                                                null, "setDisabledExpr"));
-        } catch (IntrospectionException ex) {}
-        try {
-            proplist.add(new PropertyDescriptor("errorKey", ELTextareaTag.class,
-                                                null, "setErrorKeyExpr"));
-        } catch (IntrospectionException ex) {}
-        try {
-            proplist.add(new PropertyDescriptor("errorStyle", ELTextareaTag.class,
-                                                null, "setErrorStyleExpr"));
-        } catch (IntrospectionException ex) {}
-        try {
-            proplist.add(new PropertyDescriptor("errorStyleClass", ELTextareaTag.class,
-                                                null, "setErrorStyleClassExpr"));
-        } catch (IntrospectionException ex) {}
-        try {
-            proplist.add(new PropertyDescriptor("errorStyleId", ELTextareaTag.class,
-                                                null, "setErrorStyleIdExpr"));
-        } catch (IntrospectionException ex) {}
+            proplist.add(new PropertyDescriptor("disabled",
+                    ELTextareaTag.class, null, "setDisabledExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
+        try {
+            proplist.add(new PropertyDescriptor("errorKey",
+                    ELTextareaTag.class, null, "setErrorKeyExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
+        try {
+            proplist.add(new PropertyDescriptor("errorStyle",
+                    ELTextareaTag.class, null, "setErrorStyleExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
+        try {
+            proplist.add(new PropertyDescriptor("errorStyleClass",
+                    ELTextareaTag.class, null, "setErrorStyleClassExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
+        try {
+            proplist.add(new PropertyDescriptor("errorStyleId",
+                    ELTextareaTag.class, null, "setErrorStyleIdExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
             proplist.add(new PropertyDescriptor("indexed", ELTextareaTag.class,
-                                                null, "setIndexedExpr"));
-        } catch (IntrospectionException ex) {}
+                    null, "setIndexedExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
             proplist.add(new PropertyDescriptor("name", ELTextareaTag.class,
-                                                null, "setNameExpr"));
-        } catch (IntrospectionException ex) {}
+                    null, "setNameExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
             proplist.add(new PropertyDescriptor("onblur", ELTextareaTag.class,
-                                                null, "setOnblurExpr"));
-        } catch (IntrospectionException ex) {}
+                    null, "setOnblurExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
-            proplist.add(new PropertyDescriptor("onchange", ELTextareaTag.class,
-                                                null, "setOnchangeExpr"));
-        } catch (IntrospectionException ex) {}
+            proplist.add(new PropertyDescriptor("onchange",
+                    ELTextareaTag.class, null, "setOnchangeExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
             proplist.add(new PropertyDescriptor("onclick", ELTextareaTag.class,
-                                                null, "setOnclickExpr"));
-        } catch (IntrospectionException ex) {}
+                    null, "setOnclickExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
-            proplist.add(new PropertyDescriptor("ondblclick", ELTextareaTag.class,
-                                                null, "setOndblclickExpr"));
-        } catch (IntrospectionException ex) {}
+            proplist.add(new PropertyDescriptor("ondblclick",
+                    ELTextareaTag.class, null, "setOndblclickExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
             proplist.add(new PropertyDescriptor("onfocus", ELTextareaTag.class,
-                                                null, "setOnfocusExpr"));
-        } catch (IntrospectionException ex) {}
+                    null, "setOnfocusExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
-            proplist.add(new PropertyDescriptor("onkeydown", ELTextareaTag.class,
-                                                null, "setOnkeydownExpr"));
-        } catch (IntrospectionException ex) {}
-        try {
-            proplist.add(new PropertyDescriptor("onkeypress", ELTextareaTag.class,
-                                                null, "setOnkeypressExpr"));
-        } catch (IntrospectionException ex) {}
+            proplist.add(new PropertyDescriptor("onkeydown",
+                    ELTextareaTag.class, null, "setOnkeydownExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
+        try {
+            proplist.add(new PropertyDescriptor("onkeypress",
+                    ELTextareaTag.class, null, "setOnkeypressExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
             proplist.add(new PropertyDescriptor("onkeyup", ELTextareaTag.class,
-                                                null, "setOnkeyupExpr"));
-        } catch (IntrospectionException ex) {}
+                    null, "setOnkeyupExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
+        try {
+            proplist.add(new PropertyDescriptor("onmousedown",
+                    ELTextareaTag.class, null, "setOnmousedownExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
+        try {
+            proplist.add(new PropertyDescriptor("onmousemove",
+                    ELTextareaTag.class, null, "setOnmousemoveExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
+        try {
+            proplist.add(new PropertyDescriptor("onmouseout",
+                    ELTextareaTag.class, null, "setOnmouseoutExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
+        try {
+            proplist.add(new PropertyDescriptor("onmouseover",
+                    ELTextareaTag.class, null, "setOnmouseoverExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
-            proplist.add(new PropertyDescriptor("onmousedown", ELTextareaTag.class,
-                                                null, "setOnmousedownExpr"));
-        } catch (IntrospectionException ex) {}
-        try {
-            proplist.add(new PropertyDescriptor("onmousemove", ELTextareaTag.class,
-                                                null, "setOnmousemoveExpr"));
-        } catch (IntrospectionException ex) {}
-        try {
-            proplist.add(new PropertyDescriptor("onmouseout", ELTextareaTag.class,
-                                                null, "setOnmouseoutExpr"));
-        } catch (IntrospectionException ex) {}
-        try {
-            proplist.add(new PropertyDescriptor("onmouseover", ELTextareaTag.class,
-                                                null, "setOnmouseoverExpr"));
-        } catch (IntrospectionException ex) {}
-        try {
-            proplist.add(new PropertyDescriptor("onmouseup", ELTextareaTag.class,
-                                                null, "setOnmouseupExpr"));
-        } catch (IntrospectionException ex) {}
-        try {
-            proplist.add(new PropertyDescriptor("property", ELTextareaTag.class,
-                                                null, "setPropertyExpr"));
-        } catch (IntrospectionException ex) {}
-        try {
-            proplist.add(new PropertyDescriptor("readonly", ELTextareaTag.class,
-                                                null, "setReadonlyExpr"));
-        } catch (IntrospectionException ex) {}
+            proplist.add(new PropertyDescriptor("onmouseup",
+                    ELTextareaTag.class, null, "setOnmouseupExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
+        try {
+            proplist.add(new PropertyDescriptor("property",
+                    ELTextareaTag.class, null, "setPropertyExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
+        try {
+            proplist.add(new PropertyDescriptor("readonly",
+                    ELTextareaTag.class, null, "setReadonlyExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
             proplist.add(new PropertyDescriptor("rows", ELTextareaTag.class,
-                                                null, "setRowsExpr"));
-        } catch (IntrospectionException ex) {}
+                    null, "setRowsExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
             proplist.add(new PropertyDescriptor("style", ELTextareaTag.class,
-                                                null, "setStyleExpr"));
-        } catch (IntrospectionException ex) {}
+                    null, "setStyleExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
-            proplist.add(new PropertyDescriptor("styleClass", ELTextareaTag.class,
-                                                null, "setStyleClassExpr"));
-        } catch (IntrospectionException ex) {}
+            proplist.add(new PropertyDescriptor("styleClass",
+                    ELTextareaTag.class, null, "setStyleClassExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
             proplist.add(new PropertyDescriptor("styleId", ELTextareaTag.class,
-                                                null, "setStyleIdExpr"));
-        } catch (IntrospectionException ex) {}
+                    null, "setStyleIdExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
-            proplist.add(new PropertyDescriptor("tabindex", ELTextareaTag.class,
-                                                null, "setTabindexExpr"));
-        } catch (IntrospectionException ex) {}
+            proplist.add(new PropertyDescriptor("tabindex",
+                    ELTextareaTag.class, null, "setTabindexExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
             proplist.add(new PropertyDescriptor("title", ELTextareaTag.class,
-                                                null, "setTitleExpr"));
-        } catch (IntrospectionException ex) {}
+                    null, "setTitleExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
-            proplist.add(new PropertyDescriptor("titleKey", ELTextareaTag.class,
-                                                null, "setTitleKeyExpr"));
-        } catch (IntrospectionException ex) {}
+            proplist.add(new PropertyDescriptor("titleKey",
+                    ELTextareaTag.class, null, "setTitleKeyExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
         try {
             proplist.add(new PropertyDescriptor("value", ELTextareaTag.class,
-                                                null, "setValueExpr"));
-        } catch (IntrospectionException ex) {}
-        
-        PropertyDescriptor[] result =
-            new PropertyDescriptor[proplist.size()];
+                    null, "setValueExpr"));
+        } catch (IntrospectionException ex) {
+        }
+
+        PropertyDescriptor[] result = new PropertyDescriptor[proplist.size()];
+
         return ((PropertyDescriptor[]) proplist.toArray(result));
     }
 }

Modified: struts/el/trunk/src/java/org/apache/strutsel/taglib/html/package.html
URL: http://svn.apache.org/viewcvs/struts/el/trunk/src/java/org/apache/strutsel/taglib/html/package.html?rev=376779&r1=376778&r2=376779&view=diff
==============================================================================
--- struts/el/trunk/src/java/org/apache/strutsel/taglib/html/package.html (original)
+++ struts/el/trunk/src/java/org/apache/strutsel/taglib/html/package.html Fri Feb 10 10:08:58 2006
@@ -1,63 +1,79 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html>
- <head>
-  <base/>
-  <title>Package Documentation for org.apache.strutsel.taglib.html Package</title>
- </head>
- <body bgcolor="white">
-  <p>
-   <a name="doc.Description">The "struts-html-el" tag library</a> contains JSP
-   custom tags useful in creating dynamic HTML user interfaces, including input
-   forms.
-  </p>
-  <br>
-  <a name="doc.Description"></a>
-  <div align="Center">
-   <a href="#doc.Intro">[Introduction]</a>
-   <a href="#doc.Functionality">[Html-EL Functionality]</a>
-   <a href="#doc.Examples">[Html-EL Examples]</a>
-  </div>
-  <hr>
-  <a name="doc.Intro"></a>
-  <h3>Introduction</h3>
-  <p>
-   The functionality of this tag library is entirely provided by the base
-   "struts-html" tag library in the Struts distribution.  This derived tag
-   library, "struts-html-el", only provides a different way to evaluate
-   attribute values, which is using the JavaServer Pages Standard Tag Library
-   expression language engine, or the "JSTL EL" for short.
-  </p>
-  <a name="doc.Functionality"></a>
-  <h3>Html-EL Functionality</h3>
-  <p>
-   The functionality of the "html-el" tags can be almost entirely understood
-   from the documentation of the "struts-html" base tag library.
-  </p>
-  <a name="doc.Examples"></a>
-  <h3>Html-EL Examples</h3>
-  <p>
-   The following are discrete examples of uses of the "html-el" tags, in no
-   paticular order, but emphasizing the use of JSTL EL values as attribute
-   values.
-  </p>
-  <p><i>Example:</i></p>
-  <pre>
-   &lt;html-el:button onblur="handler('${arg}')"
-                   styleClass='${styleClass["button"]'
-                   titleKey='${titleKey["button"]}'
-                   value='${buttonValue["button"]}' /&gt;</pre>
-  <p><i>Example:</i></p>
-  <pre>
-   &lt;html-el:checkbox property="button" value="${flagValue}"/&gt;</pre>
-  <p><i>Example:</i></p>
-  <pre>
-   &lt;html-el:link page="/doit.do" accesskey='${linkkey["doit"]}' &gt;
+<head>
+    <base/>
+    <title>Package Documentation for org.apache.strutsel.taglib.html
+        Package</title>
+</head>
+
+<body bgcolor="white">
+<p>
+    <a name="doc.Description">The "struts-html-el" tag library</a> contains
+    JSP
+    custom tags useful in creating dynamic HTML user interfaces, including
+    input
+    forms.
+</p>
+<br>
+<a name="doc.Description"></a>
+
+<div align="Center">
+    <a href="#doc.Intro">[Introduction]</a>
+    <a href="#doc.Functionality">[Html-EL Functionality]</a>
+    <a href="#doc.Examples">[Html-EL Examples]</a>
+</div>
+<hr>
+<a name="doc.Intro"></a>
+
+<h3>Introduction</h3>
+
+<p>
+    The functionality of this tag library is entirely provided by the base
+    "struts-html" tag library in the Struts distribution. This derived tag
+    library, "struts-html-el", only provides a different way to evaluate
+    attribute values, which is using the JavaServer Pages Standard Tag Library
+    expression language engine, or the "JSTL EL" for short.
+</p>
+<a name="doc.Functionality"></a>
+
+<h3>Html-EL Functionality</h3>
+
+<p>
+    The functionality of the "html-el" tags can be almost entirely understood
+    from the documentation of the "struts-html" base tag library.
+</p>
+<a name="doc.Examples"></a>
+
+<h3>Html-EL Examples</h3>
+
+<p>
+    The following are discrete examples of uses of the "html-el" tags, in no
+    paticular order, but emphasizing the use of JSTL EL values as attribute
+    values.
+</p>
+
+<p><i>Example:</i></p>
+<pre>
+    &lt;html-el:button onblur="handler('${arg}')"
+    styleClass='${styleClass["button"]'
+    titleKey='${titleKey["button"]}'
+    value='${buttonValue["button"]}' /&gt;</pre>
+
+<p><i>Example:</i></p>
+<pre>
+    &lt;html-el:checkbox property="button" value="${flagValue}"/&gt;</pre>
+
+<p><i>Example:</i></p>
+<pre>
+    &lt;html-el:link page="/doit.do" accesskey='${linkkey["doit"]}' &gt;
     A link
-   &lt;/html-el:link&gt;</pre>
-  <p><i>Example:</i></p>
-  <pre>
-   &lt;html-el:link page="/doit.do" onclick="openModal('/editSalary.do?id=${employee.id}')" &gt;
+    &lt;/html-el:link&gt;</pre>
+
+<p><i>Example:</i></p>
+<pre>
+    &lt;html-el:link page="/doit.do"
+    onclick="openModal('/editSalary.do?id=${employee.id}')" &gt;
     A link
-   &lt;/html-el:link&gt;</pre>
- </body>
+    &lt;/html-el:link&gt;</pre>
+</body>
 </html>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@struts.apache.org
For additional commands, e-mail: dev-help@struts.apache.org