.setText("Bus stop located at street "
+ roadSpot.getWay().getDescription());
propertyPaneLayout.show(propertyPane, busStopName);
} else if (roadSpot.getEventType() == Type.School) {
SchoolModel school = (SchoolModel) roadSpot;
streetOfSchoolLabel.setText("School located at street "
+ school.getWay().getDescription());
propertyPaneLayout.show(propertyPane, schoolPaneName);
}
} else {
propertyPaneLayout.show(propertyPane, blankPaneName);
}