import java.awt.TextArea; import javax.swing.JFrame; import javax.swing.JLabel; public class Class2 extends JFrame{ private TextArea textArea; private JLabel copyright; public Class2(){ super(""); copyright = new JLabel("CopyrightŪ 2012"); add(copyright); textArea = new TextArea("", 15,50, TextArea.SCROLLBARS_VERTICAL_ONLY); add(textArea); } }