package divelog; /** * This class creates the content on the * Welcome tabbed pane in the Dive Log * application. * @version 1.0 */ import javax.swing.*; //imported for buttons, labels, and images import java.awt.*; //imported for layout manager public class Welcome extends JPanel { //Opening class // Variables for objects private JLabel jl; private JTextArea ta; private JLabel diver; public Welcome() { // Opens constructor setLayout(new BorderLayout()); setBackground(Color.white); } // Closes constructor }//Closes class Welcome