You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by gr...@apache.org on 2007/05/18 19:47:15 UTC

svn commit: r539533 - /myfaces/shared/trunk/core/src/main/java/org/apache/myfaces/shared/taglib/html/HtmlCommandButtonTagBase.java

Author: grantsmith
Date: Fri May 18 10:47:08 2007
New Revision: 539533

URL: http://svn.apache.org/viewvc?view=rev&rev=539533
Log:
removed size attribute from commandButton, as per 
http://issues.apache.org/jira/browse/MYFACES-654

Modified:
    myfaces/shared/trunk/core/src/main/java/org/apache/myfaces/shared/taglib/html/HtmlCommandButtonTagBase.java

Modified: myfaces/shared/trunk/core/src/main/java/org/apache/myfaces/shared/taglib/html/HtmlCommandButtonTagBase.java
URL: http://svn.apache.org/viewvc/myfaces/shared/trunk/core/src/main/java/org/apache/myfaces/shared/taglib/html/HtmlCommandButtonTagBase.java?view=diff&rev=539533&r1=539532&r2=539533
==============================================================================
--- myfaces/shared/trunk/core/src/main/java/org/apache/myfaces/shared/taglib/html/HtmlCommandButtonTagBase.java (original)
+++ myfaces/shared/trunk/core/src/main/java/org/apache/myfaces/shared/taglib/html/HtmlCommandButtonTagBase.java Fri May 18 10:47:08 2007
@@ -51,7 +51,6 @@
     private String _onfocus;
     private String _onselect;
     private String _readonly;
-    private String _size;
     private String _tabindex;
     private String _type;
 
@@ -73,7 +72,6 @@
         _onfocus=null;
         _onselect=null;
         _readonly=null;
-        _size=null;
         _tabindex=null;
         _type=null;
         _action=null;
@@ -94,7 +92,6 @@
         setStringProperty(component, HTML.ONFOCUS_ATTR, _onfocus);
         setStringProperty(component, HTML.ONSELECT_ATTR, _onselect);
         setBooleanProperty(component, HTML.READONLY_ATTR, _readonly);
-        setStringProperty(component, HTML.SIZE_ATTR, _size);
         setStringProperty(component, HTML.TABINDEX_ATTR, _tabindex);
         setStringProperty(component, HTML.TYPE_ATTR, _type);
         setActionProperty(component, _action);
@@ -141,11 +138,6 @@
     public void setReadonly(String readonly)
     {
         _readonly = readonly;
-    }
-
-    public void setSize(String size)
-    {
-        _size = size;
     }
 
     public void setTabindex(String tabindex)