Uses of Class
com.esprit.models.cinemas.Cinema
Packages that use Cinema
Package
Description
-
Uses of Cinema in com.esprit.controllers.cinemas
Fields in com.esprit.controllers.cinemas declared as CinemaModifier and TypeFieldDescriptionprivate Cinema
DashboardClientController.cinema
private Cinema
ModifierCinemaController.cinema
Fields in com.esprit.controllers.cinemas with type parameters of type CinemaModifier and TypeFieldDescriptionDashboardAdminController.colAction
DashboardAdminController.colAdresse
DashboardAdminController.colCinema
private javafx.scene.control.TableColumn<Cinema,
javafx.scene.image.ImageView> DashboardAdminController.colLogo
DashboardAdminController.colResponsable
DashboardAdminController.colStatut
DashboardClientController.l1
private javafx.scene.control.TableView<Cinema>
DashboardAdminController.listCinema
Methods in com.esprit.controllers.cinemas that return types with arguments of type CinemaModifier and TypeMethodDescriptionDashboardResponsableController.chargerAcceptedCinemas()
Retrieves a list of cinemas from a service, filters them based on their status, and returns a set of accepted cinemas.DashboardAdminController.getAllCinemas()
Retrieves a list of cinemas through the use of the `CinemaService`.DashboardClientController.getAllCinemas()
Retrieves a list of cinemas through a call to the ` CinemaService`.DashboardClientController.loadAcceptedCinemas()
Loads a set of cinemas from a service, filters them based on their status, and returns a HashSet of accepted cinemas to be displayed in a user interface.DashboardResponsableController.loadAcceptedCinemas()
Loads a set of accepted cinemas from a CinemaService and displays them as cards on a flow pane.DashboardClientController.rechercher
(List<Cinema> liste, String recherche) Searches for Cinema objects in a list based on a search term and returns a list of matching objects.Methods in com.esprit.controllers.cinemas with parameters of type CinemaModifier and TypeMethodDescriptionprivate javafx.scene.layout.HBox
DashboardClientController.createCinemaCard
(Cinema cinema) Creates a card container and adds various components to it, including an image view for the cinema logo, labels for the name and address, a vertical line, buttons for showing movies and planning, and a rating component.private javafx.scene.layout.HBox
DashboardResponsableController.createCinemaCard
(Cinema cinema) Creates a card that displays a cinema's details, including its name, capacity, and delete button.private void
DashboardClientController.displayMovieSessionsForDate
(LocalDate date, Cinema cinema) Loads the current week's planning data, displays it in a VBox, and adds an event listener to display more detailed moviesession information when a date is clicked.void
Sets text fields and displays an image based on input cinema object's properties: nom, adresse, logo.private Map<LocalDate,
List<MovieSession>> DashboardClientController.loadCurrentWeekPlanning
(LocalDate startDate, Cinema cinema) Loads the planning for the current week (Sunday to Saturday) for a given cinema using MovieSessionService.private void
DashboardAdminController.showFilmsInModal
(Cinema cinema) void
DashboardClientController.showPlanning
(Cinema cinema) Displays a planning page for a cinema, consisting of 7 days of the week, each day represented by a label with the date and a button to display moviesessions for that date.Method parameters in com.esprit.controllers.cinemas with type arguments of type CinemaModifier and TypeMethodDescriptionprivate void
DashboardClientController.createCinemaCards
(List<Cinema> cinemas) Creates film cards for a list of cinemas and adds them to a pane containing the film cards.DashboardClientController.rechercher
(List<Cinema> liste, String recherche) Searches for Cinema objects in a list based on a search term and returns a list of matching objects. -
Uses of Cinema in com.esprit.models.cinemas
Fields in com.esprit.models.cinemas declared as CinemaModifier and TypeFieldDescriptionprivate Cinema
CinemaComment.cinema
private Cinema
CinemaHall.cinema
private Cinema
CinemaRating.cinema
Constructors in com.esprit.models.cinemas with parameters of type CinemaModifierConstructorDescriptionCinemaComment
(Cinema cinema, Client client, String commentText, String sentiment) Constructor without id for creating new comment instances.CinemaHall
(Cinema cinema, Integer seatCapacity, String name) Constructor without id for creating new cinema hall instances.CinemaRating
(Cinema cinema, Client client, Integer rating) Constructor without id for creating new rating instances. -
Uses of Cinema in com.esprit.services.cinemas
Methods in com.esprit.services.cinemas that return CinemaModifier and TypeMethodDescriptionprivate Cinema
CinemaService.buildCinema
(ResultSet rs) CinemaService.getCinemaById
(Long cinemaId) Retrieves the CinemaById value.CinemaService.getCinemaByName
(String name) Retrieves the CinemaByName value.Methods in com.esprit.services.cinemas that return types with arguments of type CinemaModifier and TypeMethodDescriptionCinemaRatingService.getTopRatedCinemas()
Retrieves the TopRatedCinemas value.CinemaService.read()
Performs sort operation.Methods in com.esprit.services.cinemas with parameters of type CinemaModifier and TypeMethodDescriptionvoid
void
MovieSessionService.getSessionsByDateRangeAndCinema
(LocalDate startDate, LocalDate endDate, Cinema cinema) Retrieves the SessionsByDateRangeAndCinema value.void
-
Uses of Cinema in com.esprit.services.films
Methods in com.esprit.services.films that return types with arguments of type CinemaModifier and TypeMethodDescriptionFilmCinemaService.getCinemasForFilm
(int filmId) Retrieves the CinemasForFilm value.