You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2009/09/29 16:46:21 UTC

svn commit: r819972 - in /myfaces/tobago/trunk/extension/tobago-taglib-extension/src/main/java/org/apache/myfaces/tobago/taglib/extension12: SelectManyListboxExtensionTag.java SelectOneListboxExtensionTag.java

Author: lofwyr
Date: Tue Sep 29 14:46:20 2009
New Revision: 819972

URL: http://svn.apache.org/viewvc?rev=819972&view=rev
Log:
remove deprecated "height" attribute

Modified:
    myfaces/tobago/trunk/extension/tobago-taglib-extension/src/main/java/org/apache/myfaces/tobago/taglib/extension12/SelectManyListboxExtensionTag.java
    myfaces/tobago/trunk/extension/tobago-taglib-extension/src/main/java/org/apache/myfaces/tobago/taglib/extension12/SelectOneListboxExtensionTag.java

Modified: myfaces/tobago/trunk/extension/tobago-taglib-extension/src/main/java/org/apache/myfaces/tobago/taglib/extension12/SelectManyListboxExtensionTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/extension/tobago-taglib-extension/src/main/java/org/apache/myfaces/tobago/taglib/extension12/SelectManyListboxExtensionTag.java?rev=819972&r1=819971&r2=819972&view=diff
==============================================================================
--- myfaces/tobago/trunk/extension/tobago-taglib-extension/src/main/java/org/apache/myfaces/tobago/taglib/extension12/SelectManyListboxExtensionTag.java (original)
+++ myfaces/tobago/trunk/extension/tobago-taglib-extension/src/main/java/org/apache/myfaces/tobago/taglib/extension12/SelectManyListboxExtensionTag.java Tue Sep 29 14:46:20 2009
@@ -17,11 +17,11 @@
  * limitations under the License.
  */
 
+import org.apache.myfaces.tobago.apt.annotation.DynamicExpression;
 import org.apache.myfaces.tobago.apt.annotation.ExtensionTag;
 import org.apache.myfaces.tobago.apt.annotation.Tag;
 import org.apache.myfaces.tobago.apt.annotation.TagAttribute;
 import org.apache.myfaces.tobago.apt.annotation.UIComponentTagAttribute;
-import org.apache.myfaces.tobago.apt.annotation.DynamicExpression;
 import org.apache.myfaces.tobago.internal.taglib.SelectManyListboxTag;
 
 import javax.servlet.jsp.JspException;
@@ -50,7 +50,6 @@
   private javax.el.ValueExpression rendered;
   private javax.el.ValueExpression binding;
   private javax.el.ValueExpression tip;
-  private javax.el.ValueExpression height;
   private javax.el.ValueExpression converter;
   private javax.el.MethodExpression validator;
   private javax.el.ValueExpression labelWidth;
@@ -120,9 +119,6 @@
     if (id != null) {
       selectManyListboxTag.setId(id);
     }
-    if (height != null) {
-      selectManyListboxTag.setHeight(height);
-    }
     if (readonly != null) {
       selectManyListboxTag.setReadonly(readonly);
     }
@@ -166,7 +162,6 @@
     inline = null;
     label = null;
     labelWidth = null;
-    height = null;
     readonly = null;
     rendered = null;
     converter = null;
@@ -268,10 +263,6 @@
     this.label = label;
   }
 
-  public void setHeight(javax.el.ValueExpression height) {
-    this.height = height;
-  }
-
   /**
    * A method binding EL expression,
    * accepting FacesContext, UIComponent,

Modified: myfaces/tobago/trunk/extension/tobago-taglib-extension/src/main/java/org/apache/myfaces/tobago/taglib/extension12/SelectOneListboxExtensionTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/extension/tobago-taglib-extension/src/main/java/org/apache/myfaces/tobago/taglib/extension12/SelectOneListboxExtensionTag.java?rev=819972&r1=819971&r2=819972&view=diff
==============================================================================
--- myfaces/tobago/trunk/extension/tobago-taglib-extension/src/main/java/org/apache/myfaces/tobago/taglib/extension12/SelectOneListboxExtensionTag.java (original)
+++ myfaces/tobago/trunk/extension/tobago-taglib-extension/src/main/java/org/apache/myfaces/tobago/taglib/extension12/SelectOneListboxExtensionTag.java Tue Sep 29 14:46:20 2009
@@ -17,11 +17,11 @@
  * limitations under the License.
  */
 
+import org.apache.myfaces.tobago.apt.annotation.DynamicExpression;
 import org.apache.myfaces.tobago.apt.annotation.ExtensionTag;
 import org.apache.myfaces.tobago.apt.annotation.Tag;
 import org.apache.myfaces.tobago.apt.annotation.TagAttribute;
 import org.apache.myfaces.tobago.apt.annotation.UIComponentTagAttribute;
-import org.apache.myfaces.tobago.apt.annotation.DynamicExpression;
 import org.apache.myfaces.tobago.internal.taglib.SelectOneListboxTag;
 
 import javax.servlet.jsp.JspException;
@@ -43,7 +43,6 @@
   private javax.el.ValueExpression rendered;
   private javax.el.ValueExpression binding;
   private javax.el.ValueExpression tip;
-  private javax.el.ValueExpression height;
   private javax.el.ValueExpression converter;
   private javax.el.MethodExpression validator;
   private javax.el.ValueExpression labelWidth;
@@ -113,9 +112,6 @@
     if (id != null) {
       selectOneListboxTag.setId(id);
     }
-    if (height != null) {
-      selectOneListboxTag.setHeight(height);
-    }
     if (readonly != null) {
       selectOneListboxTag.setReadonly(readonly);
     }
@@ -159,7 +155,6 @@
     //inline = null;
     labelWidth = null;
     label = null;
-    height = null;
     readonly = null;
     rendered = null;
     converter = null;
@@ -255,10 +250,6 @@
     this.label = label;
   }
 
-  public void setHeight(javax.el.ValueExpression height) {
-    this.height = height;
-  }
-
   /**
    * A method binding EL expression,
    * accepting FacesContext, UIComponent,