sjivan / gwt-ext

Automatically exported from code.google.com/p/gwt-ext
0 stars 0 forks source link

ColumnTree with GWT 1.4.6 #456

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The GWT compiler (1.4*) does not support primitive types as parameters for
Object type.

   public void setColumnValue(String dataIndex, int value){
      setTreeAttribute(dataIndex, value);
   }

   public void setColumnValue(String dataIndex, float value){
      setTreeAttribute(dataIndex, value);
   }

   public void setColumnValue(String dataIndex, boolean value){
      setTreeAttribute(dataIndex, value);
   }

   public void setColumnValue(String dataIndex, Date value){
      setTreeAttribute(dataIndex, value);
   }

Original issue reported on code.google.com by mlim1...@gmail.com on 13 Nov 2008 at 7:13

GoogleCodeExporter commented 8 years ago
Added extra methods for Primitive arguments to avoid the autoboxing since some 
people
still use JDK 1.4.  New methods were added int TreeNode.

Original comment by mlim1...@gmail.com on 13 Nov 2008 at 7:21