super("Drop Test 1.4");
setSize(300,300);
setDefaultCloseOperation(EXIT_ON_CLOSE);
getContentPane().add(
new JLabel("Drop the choice from your JList here:"),
BorderLayout.NORTH);
ta = new JTextArea();
ta.setBackground(Color.white);
getContentPane().add(ta, BorderLayout.CENTER);
// Set up our text area to recieve drops...
// This class will handle drop events
setVisible(true);