You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2007/01/30 23:10:53 UTC

svn commit: r501601 - /myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/ajaxchildcombobox/AjaxChildComboBoxTag.java

Author: werpu
Date: Tue Jan 30 14:10:52 2007
New Revision: 501601

URL: http://svn.apache.org/viewvc?view=rev&rev=501601
Log:
added a missing but from the tld referenced size attribute

Modified:
    myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/ajaxchildcombobox/AjaxChildComboBoxTag.java

Modified: myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/ajaxchildcombobox/AjaxChildComboBoxTag.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/ajaxchildcombobox/AjaxChildComboBoxTag.java?view=diff&rev=501601&r1=501600&r2=501601
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/ajaxchildcombobox/AjaxChildComboBoxTag.java (original)
+++ myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/ajaxchildcombobox/AjaxChildComboBoxTag.java Tue Jan 30 14:10:52 2007
@@ -38,7 +38,11 @@
 
     private String _parentComboBox;
     private String _ajaxSelectItemsMethod;
-  
+    private String _size; //please fix this, this has to do something
+    //it is referenced from the tld!!!!
+    
+    
+    
     public String getComponentType() {
         return AjaxChildComboBox.COMPONENT_TYPE;
     }
@@ -59,6 +63,7 @@
         AjaxChildComboBoxTag.setAjaxSelectItemsMethodProperty(getFacesContext(),
         		component, _ajaxSelectItemsMethod);
         setStringProperty(component, "parentComboBox", _parentComboBox);
+    
     }
 
     public static void setAjaxSelectItemsMethodProperty(FacesContext context,
@@ -86,5 +91,9 @@
     public void setParentComboBox(String parentComboBox) 
     {
         this._parentComboBox = parentComboBox;
+    }
+    
+    public void setSize(String size) {
+    	this._size = size;
     }
 }