FileDocCategorySizeDatePackage
DropTest14.javaAPI DocExample844Thu Oct 24 20:14:28 BST 2002None

DropTest14

public class DropTest14 extends JFrame

Fields Summary
JTextArea
ta
Constructors Summary
public DropTest14()

    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);
  
Methods Summary
public static voidmain(java.lang.String[] args)

    new DropTest14();