Revision 41103 trunk/org.gvsig.desktop/org.gvsig.desktop.library/org.gvsig.fmap.control/src/main/java/org/gvsig/fmap/mapcontrol/dal/feature/swing/table/ConfigurationTableModel.java

View differences:

ConfigurationTableModel.java
127 127
        case TYPE_COLUMN:
128 128
            return String.class;
129 129
        case SIZE_COLUMN:
130
            return int.class;
130
            /*
131
             * We must use Integer.class instead of int.class
132
             * because int.class does not have a registered
133
             * renderer and its parent class is 'null', so we
134
             * have no renderer for it
135
             */
136
            return Integer.class;
131 137
        default:
132 138
            return Object.class;
133 139
        }

Also available in: Unified diff