PropertyDefinition propertyDefinition = this.configurationDefinition.get(propertyName);
this.invalidPropertyNameToDisplayNameMap.put(propertyName, propertyDefinition.getDisplayName());
}
}
for (Map.Entry<PropertyDefinitionList, ListGrid> entry : listOfMapsGrids.entrySet()) {
PropertyDefinitionList propertyDefinitionList = entry.getKey();
int listMin = propertyDefinitionList.getMin();
int listMax = propertyDefinitionList.getMax();
ListGridRecord[] gridRecords = entry.getValue().getRecords();
if (!isListGridRecordCountValid(gridRecords, listMin, listMax)) {
this.invalidPropertyNameToDisplayNameMap.put(propertyDefinitionList.getName(),
propertyDefinitionList.getDisplayName());
}
}
if (!this.invalidPropertyNameToDisplayNameMap.isEmpty()) {
PropertyValueChangeEvent event = new PropertyValueChangeEvent(null, null, true,
this.invalidPropertyNameToDisplayNameMap);