public void setVisiable(TransportRoute route, Boolean visiable) { routeVisiableList.put(route.getId(), visiable); }
public Boolean IsVisiable(TransportRoute route) { if (!routeVisiableList.containsKey(route.getId())) return Boolean.FALSE; else return routeVisiableList.get(route.getId()); }