Uses of Class
cat.proven.teamplayer.model.Player
Packages that use Player
-
Uses of Player in cat.proven.teamplayer.model
Methods in cat.proven.teamplayer.model that return PlayerModifier and TypeMethodDescriptionTeamPlayerModel.findPlayerByFullName(String fullname)
Retrieves a single player given a fullnameTeamPlayerModel.findPlayerById(long id)
Retrieves a single player given a idMethods in cat.proven.teamplayer.model that return types with arguments of type PlayerModifier and TypeMethodDescriptionTeamPlayerModel.findPlayersByTeam(Team team)
Retrieves a list of player that belongs to the given teamMethods in cat.proven.teamplayer.model with parameters of type PlayerModifier and TypeMethodDescriptionint
Adds a player given a Playerint
TeamPlayerModel.enrolPlayerToTeam(Team team, Player player)
Enrols a player given to the team givenint
TeamPlayerModel.modifyPlayer(Player player)
Modifies a player given Playerint
TeamPlayerModel.unenrolPlayerToTeam(Team team, Player player)
Unenrols a player given to the team given -
Uses of Player in cat.proven.teamplayer.model.persist
Methods in cat.proven.teamplayer.model.persist that return PlayerModifier and TypeMethodDescriptionPlayerDaoInterface.selectWhereId(long id)
Selects a player given idPlayerDaoList.selectWhereId(long id)
Methods in cat.proven.teamplayer.model.persist that return types with arguments of type PlayerModifier and TypeMethodDescriptionPlayerDaoInterface.selectAll()
Selects all players from data sourcePlayerDaoList.selectAll()
PlayerDaoInterface.selectWhereName(String name)
Selects a player given namePlayerDaoList.selectWhereName(String name)
PlayerDaoInterface.selectWhereTeamId(long teamId)
Selects player given team IDPlayerDaoList.selectWhereTeamId(long teamId)
Methods in cat.proven.teamplayer.model.persist with parameters of type PlayerModifier and TypeMethodDescriptionint
Deletes the player givenint
int
Inserts a new playerint
int
Updates the player givenint