private void updateView() {
labelPosition.setText(format(RouteConverter.getBundle().getString("position-index"), index + 1, route.getPositionCount()));
GarminFlightPlanPosition position = getPosition();
textFieldDescription.setText(position.getDescription());
CountryCode countryCode = position.getCountryCode();
comboBoxCountryCode.setSelectedItem(countryCode == null ? None : countryCode);
textFieldIdentifier.setText(position.getIdentifier());
comboBoxWaypointType.setSelectedItem(position.getWaypointType());
validateModel();
}