}
}, getKeyStroke(VK_ESCAPE, 0), WHEN_ANCESTOR_OF_FOCUSED_COMPONENT);
}
private void handleRoutingServiceUpdate() {
RoutingServiceFacade routingServiceFacade = RouteConverter.getInstance().getRoutingServiceFacade();
RoutingService service = routingServiceFacade.getRoutingService();
textFieldRoutingServicePath.setEnabled(service.isDownload());
textFieldRoutingServicePath.setText(service.isDownload() ? service.getPath() : "");
buttonChooseRoutingServicePath.setEnabled(service.isDownload());
checkBoxAvoidFerries.setSelected(routingServiceFacade.isAvoidFerries());
checkBoxAvoidHighways.setSelected(routingServiceFacade.isAvoidHighways());
checkBoxAvoidTolls.setSelected(routingServiceFacade.isAvoidTolls());
updateTravelModes();
}