Uses of Class
com.esprit.models.cinemas.MovieSession
Packages that use MovieSession
Package
Description
-
Uses of MovieSession in com.esprit.controllers.cinemas
Fields in com.esprit.controllers.cinemas with type parameters of type MovieSessionModifier and TypeFieldDescriptionprivate javafx.scene.control.TableColumn<MovieSession,
Void> DashboardResponsableController.colAction
private javafx.scene.control.TableColumn<MovieSession,
String> DashboardResponsableController.colCinema
private javafx.scene.control.TableColumn<MovieSession,
Date> DashboardResponsableController.colDate
private javafx.scene.control.TableColumn<MovieSession,
Time> DashboardResponsableController.colDepartTime
private javafx.scene.control.TableColumn<MovieSession,
Time> DashboardResponsableController.colEndTime
private javafx.scene.control.TableColumn<MovieSession,
String> DashboardResponsableController.colMovie
private javafx.scene.control.TableColumn<MovieSession,
String> DashboardResponsableController.colMovieRoom
private javafx.scene.control.TableColumn<MovieSession,
Double> DashboardResponsableController.colPrice
private javafx.scene.control.TableView<MovieSession>
DashboardResponsableController.SessionTableView
Methods in com.esprit.controllers.cinemas that return types with arguments of type MovieSessionModifier and TypeMethodDescriptionprivate 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 List<MovieSession>
DashboardResponsableController.loadMovieSessions()
Retrieves a list of `MovieSession` objects from an external service, converts it to an observable list, and sets it as the items of a view.Methods in com.esprit.controllers.cinemas with parameters of type MovieSessionModifier and TypeMethodDescriptionprivate javafx.scene.layout.StackPane
DashboardClientController.createMovieSessionCard
(MovieSession moviesession) Generates a stack pane containing a card with information about a moviesession, including the film's name, cinema hall, screening time, and price. -
Uses of MovieSession in com.esprit.controllers.films
Fields in com.esprit.controllers.films declared as MovieSessionModifier and TypeFieldDescriptionprivate MovieSession
FilmUserController.moviesession
private MovieSession
PaymentController.moviesession
private MovieSession
PaymentUserController.moviesession
private MovieSession
SeatSelectionController.moviesession
Methods in com.esprit.controllers.films with parameters of type MovieSessionModifier and TypeMethodDescriptionvoid
PaymentUserController.init
(MovieSession p, Client client) Sets the values of class variables `client` and `moviesession`, and updates the text of a label `total`.void
SeatSelectionController.initialize
(MovieSession moviesession, Client client) Initializes the JavaFX controller and sets up UI components.void
PaymentUserController.initWithSeats
(MovieSession moviesession, Client client, List<Seat> selectedSeats) Performs initWithSeats operation.void
PaymentController.setData
(MovieSession s) Sets the `MovieSession` object's fields and updates spinner values for the year, month, and cvc based on the `MovieSession` object's `prix` field and sets the text of a text field with the total amount. -
Uses of MovieSession in com.esprit.models.cinemas
Fields in com.esprit.models.cinemas with type parameters of type MovieSessionMethods in com.esprit.models.cinemas that return types with arguments of type MovieSessionModifier and TypeMethodDescriptionCinema.getMovieSessions()
Get all movie sessions for this cinema across all halls. -
Uses of MovieSession in com.esprit.models.films
Fields in com.esprit.models.films declared as MovieSessionFields in com.esprit.models.films with type parameters of type MovieSessionConstructors in com.esprit.models.films with parameters of type MovieSessionModifierConstructorDescriptionTicket
(int numberOfSeats, Client client, MovieSession movieSession, float price) Constructor without id for creating new ticket instances. -
Uses of MovieSession in com.esprit.services.cinemas
Methods in com.esprit.services.cinemas that return MovieSessionModifier and TypeMethodDescriptionprivate MovieSession
MovieSessionService.buildMovieSession
(ResultSet rs) MovieSessionService.getFirstSessionForFilm
(Long filmId) Retrieves the FirstSessionForFilm value.MovieSessionService.getMovieSessionById
(int id) Retrieves the MovieSessionById value.Methods in com.esprit.services.cinemas that return types with arguments of type MovieSessionModifier and TypeMethodDescriptionMovieSessionService.getSessionsByDateRangeAndCinema
(LocalDate startDate, LocalDate endDate, Cinema cinema) Retrieves the SessionsByDateRangeAndCinema value.MovieSessionService.getSessionsByFilmAndCinema
(Long filmId, Long cinemaId) Retrieves the SessionsByFilmAndCinema value.MovieSessionService.read()
Methods in com.esprit.services.cinemas with parameters of type MovieSessionModifier and TypeMethodDescriptionvoid
MovieSessionService.create
(MovieSession movieSession) void
MovieSessionService.delete
(MovieSession movieSession) void
MovieSessionService.update
(MovieSession movieSession)