Revision 9512 org.gvsig.online/trunk/org.gvsig.online/org.gvsig.online.lib/org.gvsig.online.lib.impl/src/main/java/org/gvsig/online/lib/impl/workspace/tables/AbstractTable.java

View differences:

AbstractTable.java
71 71
                }
72 72
            }
73 73
        }
74
        
75
        protected boolean isNull(String attrname) {
76
            return this.values.get(attrname) == null;
77
        }
74 78

  
75 79
        protected String getString(String attrname) {
76 80
            return (String) this.values.get(attrname);
......
189 193
            }
190 194
        }
191 195

  
192
        protected EditableFeature createFeature(FeatureStore store) throws DataException {
196
        public EditableFeature createFeature(FeatureStore store) throws DataException {
193 197
            EditableFeature f = store.createNewFeature();
194 198
            for (Map.Entry<String, Object> value : this.values.entrySet()) {
195 199
                if( f.hasValue(value.getKey())) {

Also available in: Unified diff