Title: package proj2; import cardgames.*; public class Project2 { public static v Author: Anonymous Pastebin link: http://pastebin.com/f1FkJAXH First Edit: Thursday 3rd of October 2013 12:13:18 AM CDT Last Edit: Thursday 3rd of October 2013 12:13:18 AM CDT package proj2; import cardgames.*;   public class Project2 {         public static void main(String[] args)         {                 GUI theWindow = new GUI();                 Deck theDeck = new Deck();                 theDeck.shuffleDeck();                 Card card1 = theDeck.dealCard();                 System.out.println("Card 1 is: " + card1.toString());                 Card card2 = theDeck.dealCard();                 System.out.println("Card 2 is: " + card2.toString());                 Card card3 = theDeck.dealCard();                 System.out.println("Card 3 is: " + card3.toString());                                 theWindow.showCard(card1);                 theWindow.showCard(card2);                 theWindow.showCard(card3);                                 if (card1.getValue() == card2.getValue())                         System.out.println("Pair");                 else                         System.out.println("Not a pair");         } }