Uses of Interface
org.ninm.games.cardgames.Team

Packages that use Team
org.ninm.games.cardgames This package contains all the interfaces for a card game. 
org.ninm.games.cardgames.belot This package contains the implementation of the Belot card game 
org.ninm.games.cardgames.common Common classes and utilties used by card games. 
 

Uses of Team in org.ninm.games.cardgames
 

Methods in org.ninm.games.cardgames that return Team
 Team Player.getTeam()
          returns the team that this player belongs to
 

Uses of Team in org.ninm.games.cardgames.belot
 

Fields in org.ninm.games.cardgames.belot declared as Team
private  Team BelotEngine.m_biddingTeam
           
 

Methods in org.ninm.games.cardgames.belot that return Team
 Team BelotEngine.getBiddingTeam()
          Returns the biddingTeam.
 

Methods in org.ninm.games.cardgames.belot with parameters of type Team
 void BelotEngine.setBiddingTeam(Team biddingTeam)
          Sets the biddingTeam.
(package private)  DefaultTeam BelotEngine.getOposition(Team team)
           
 DefaultTeam Belot.getOposition(Team team)
          returns the oposition to this team
 

Uses of Team in org.ninm.games.cardgames.common
 

Classes in org.ninm.games.cardgames.common that implement Team
 class DefaultTeam
          The default implementation of the team interface
 

Fields in org.ninm.games.cardgames.common declared as Team
private  Team DefaultPlayer.m_team
           
private  Team CardGameEvent.m_team
           
 

Methods in org.ninm.games.cardgames.common that return Team
 Team DefaultPlayer.getTeam()
           
 Team CardGameEvent.getTeam()
          Returns the team.
 

Methods in org.ninm.games.cardgames.common with parameters of type Team
 void DefaultScore.addToGameScore(Team team, int points)
           
 void DefaultScore.addToRubberScore(Team team, int points)
           
 void DefaultScore.addToTotalScore(Team team, int points)
           
protected  void AbstractEngine.fireBonusReceived(Player player, Team team, Bonus bonus)
          helper method to let every listener know of the bonus being received
protected  void AbstractEngine.fireCardDelt(Player player, Team team, Player dealer, Card card)
          helper method to let every listener know that a card has been delt
 

Constructors in org.ninm.games.cardgames.common with parameters of type Team
DefaultPlayer(java.lang.String name, Team team)
           
DealerEvent(java.lang.Object source, Player player, Team team, Player dealer, Card card)
          Constructor for DealerEvent.
CardGameEvent(java.lang.Object source, Player player, Team team)
          Constructor for CardGameEvent.
BonusEvent(java.lang.Object source, Player player, Team team, Bonus bonus)
          Constructor for BonusEvent.
 


SourceForge.net Logo