public class PanelExample extends JPanel { // declare an ImageIcon object. // declare a Label to store your Image Icon // declare a TextField to store the basketball team location // declare a TextField to store the famous basketball player's name // declare a TextField to store the current ticket price to see a game // declare a Button to click when information is entered // declare a Label to display the ticket price and location information // constructor public PanelExample() { // set preferred size of the panel to 400 x 550 // create an image icon and add the path to you image in it. // your image should also be stored in your src folder or somewhere // in your project // instantiate the Label for the Image Icon and add the Image Icon // add the Label to the Panel // instantiate the TextField for the location // add the TextField to the Panel // instantiate the TextField for the players's name // add the TextField to the Panel // instantiate the TextField for the current ticket price // add the TextField to the Panel // instantiate the Label to display the all the information. // add the Label to the Panel // instantiate the Button to click // add an ActionListener to the button // add the Button to the Panel } private class buttonListener implements ActionListener { // don't forget add the unimplemented method - eclipse will help with this // in the method, disable all the TextFields // calculate the ticket price if you were to purchase using Canadian currency // set the ticket price in US dollars and Canadian and append the location } }