super("Copy And Paste Demonstration");
clipboard = getToolkit().getSystemClipboard();
GraphicsEnvironment.getLocalGraphicsEnvironment();
Font font = new Font("LucidaSans", Font.PLAIN, 15);
JTextArea textArea1 = new JTextArea(davidMessage + andyMessage, 5, 25);
JTextArea textArea2 = new JTextArea("<Paste text here>", 5, 25);
textArea1.setFont(font);
textArea2.setFont(font);
JPanel jPanel = new JPanel();
jPanel.setLayout(new BoxLayout(jPanel,BoxLayout.Y_AXIS));
jPanel.add(textArea1);
jPanel.add(Box.createRigidArea(new Dimension(0,10)));
jPanel.add(textArea2);
getContentPane().add(jPanel, BorderLayout.CENTER);