- pickTrump(Card) - Method in class game.EuchrePanel
-
A method used go through the trump logic and set trump to what
is called by the player.
- pickUp(int) - Method in class game.EuchrePanel
-
A method for pickup to update the players hand as well as update
the GUI when you pick up a card.
- playable(Card, Card, ArrayList<Card>) - Method in class game.Euchre
-
A method that checks if the card played is playable or not.
- playAgain() - Method in class game.EuchrePanel
-
A helper method to check if the player would like to play again.
- playCard(int) - Method in class game.EuchrePanel
-
A method used to play a hand via GUI terms.
- Player - Class in game
-
The Player class is a class that holds each players information.
- Player(Team, ArrayList<Card>) - Constructor for class game.Player
-
A Constructor that sets the players team and hand, while setting
dealer to false.
- playGame(Euchre) - Method in class game.EuchrePanel
-
The playGame method.
- playHand(int, Euchre) - Method in class game.EuchrePanel
-
A method used to play a hand via GUI terms.
- printCard(Card) - Static method in class game.Euchre
-
A method that prints a card for turn up.
- printHand(ArrayList<Card>) - Static method in class game.Euchre
-
A method that prints the hand.