Uses of Class
com.neven.ticTacToeGame.service.StatisticService
-
Packages that use StatisticService Package Description com.neven.ticTacToeGame.controller com.neven.ticTacToeGame.controller is a group of controllers witch allow application to serve HTTP requests. -
-
Uses of StatisticService in com.neven.ticTacToeGame.controller
Fields in com.neven.ticTacToeGame.controller declared as StatisticService Modifier and Type Field Description private StatisticService
MainPageController. statisticService
This is an injected statistic service(StatisticService
) witch allow to get statistic for games with an algorithm(MiniMax) from DB.private StatisticService
PlayerVsAlgorithmController. statisticService
This is an injected statistic service(StatisticService
) witch allow to get(from DB) and update(save to DB) statistic for games with an algorithm(MiniMax).Constructors in com.neven.ticTacToeGame.controller with parameters of type StatisticService Constructor Description MainPageController(StatisticService statisticService)
Create class with an injection of statistic service(StatisticService
) to show results of the games with an algorithm(MiniMax) on main page.PlayerVsAlgorithmController(StatisticService statisticService)
Create class with an injection of statistic service for games with an algorithm(MiniMax).
-