Index: src/share/org/apache/struts/taglib/html/BaseInputTag.java =================================================================== RCS file: /home/cvspublic/jakarta-struts/src/share/org/apache/struts/taglib/html/BaseInputTag.java,v retrieving revision 1.1 diff -u -u -r1.1 BaseInputTag.java --- src/share/org/apache/struts/taglib/html/BaseInputTag.java 2001/01/06 21:50:39 1.1 +++ src/share/org/apache/struts/taglib/html/BaseInputTag.java 2001/05/02 14:49:42 @@ -122,6 +122,12 @@ protected String value = null; + /** + * The wrap attribute for this field + */ + protected String wrap = null; + + // ------------------------------------------------------------- Properties @@ -254,6 +260,28 @@ public void setValue(String value) { this.value = value; + + } + + + /** + * Return the wrap property + */ + public String getWrap() { + + return (this.wrap); + + } + + + /** + * Set the wrap property + * + * @param wrap The new value of wrap + */ + public void setWrap(String wrap) { + + this.wrap = wrap; }