SYMBOL INDEX (45 symbols across 11 files) FILE: src/main/java/org/vaadin/example/AbstractEntity.java class AbstractEntity (line 15) | @MappedSuperclass method getId (line 25) | public Long getId() { method setId (line 29) | protected void setId(Long id) { method equals (line 33) | @Override method hashCode (line 49) | @Override FILE: src/main/java/org/vaadin/example/AppShell.java class AppShell (line 7) | @StyleSheet(Lumo.STYLESHEET) FILE: src/main/java/org/vaadin/example/Application.java class Application (line 14) | @SpringBootApplication method main (line 17) | public static void main(String[] args) { method baseMapProvider (line 22) | @Bean FILE: src/main/java/org/vaadin/example/EventEditor.java class EventEditor (line 16) | @Route method EventEditor (line 25) | public EventEditor(SportEventService service) { method createContent (line 39) | @Override FILE: src/main/java/org/vaadin/example/MainView.java class MainView (line 30) | @Route method MainView (line 56) | public MainView(SportEventService service) { method delete (line 109) | public void delete(SportEvent event) { method loadEventsByNameFilter (line 114) | private void loadEventsByNameFilter(String value) { method loadEventsInViewport (line 120) | private void loadEventsInViewport() { method loadEventsWithinBounds (line 127) | private void loadEventsWithinBounds(Polygon bounds) { method setEvents (line 131) | private void setEvents(List events) { FILE: src/main/java/org/vaadin/example/SportEvent.java class SportEvent (line 12) | @Entity method SportEvent (line 28) | public SportEvent() { method getDate (line 31) | public LocalDate getDate() { method setDate (line 35) | public void setDate(LocalDate date) { method getTitle (line 39) | public String getTitle() { method setTitle (line 43) | public void setTitle(String title) { method getRoute (line 47) | public LineString getRoute() { method setRoute (line 51) | public void setRoute(LineString route) { method getLocation (line 55) | public Point getLocation() { method setLocation (line 59) | public void setLocation(Point location) { FILE: src/main/java/org/vaadin/example/SportEventRepository.java type SportEventRepository (line 12) | public interface SportEventRepository extends JpaRepository