use of com.codename1.rad.models.EntityType in project CodeRAD by shannah.
the class EntityListTableModel method rebuildColMap.
private void rebuildColMap() {
colMap.clear();
int len = columns.getColumnCount();
for (int i = 0; i < len; i++) {
FieldNode def = columns.getColumn(i);
Property p = def.getProperty(entityType);
if (p != null) {
colMap.put(p, i);
}
}
}
Aggregations