Commit d99373bf authored by Riegel's avatar Riegel
Browse files

Feat: Implement display of CityDoctorModel metadata

2 merge requests!28Version 3.17.0 Release,!26Add ZIP-archive support
Showing with 9 additions and 1 deletion
+9 -1
...@@ -164,8 +164,16 @@ public class ZipEntryPicker { ...@@ -164,8 +164,16 @@ public class ZipEntryPicker {
} else { } else {
erroneousValue.setText(Localization.getText("ZipEntryPicker.no")); erroneousValue.setText(Localization.getText("ZipEntryPicker.no"));
if (entry.getModel() == null) { if (entry.getModel() == null) {
validatedValue.setText(unknownValueText);
objectCountValue.setText(unknownValueText);
return;
}
if (entry.getModel().isValidated()) {
validatedValue.setText(Localization.getText("ZipEntryPicker.yes"));
} else {
validatedValue.setText(Localization.getText("ZipEntryPicker.no"));
} }
objectCountValue.setText(String.valueOf(entry.getModel().getNumberOfFeatures()));
} }
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment