puse esto:
setLayout(null);
TextArea area1 = new TextArea();
area1.setBound(0,0,100,100);
ventana.add(area1);
ventana.setSize(500,500);
ventana.setVisible(true);
pero me da 2 errores
Ventana1.java:10: cannot resolve symbol
symbol: method setLayout(<nulltype>)
location: class Ventana1
setLayout(null); //sale un un tongo abajo de la s
Ventana1.java:14: cannot resolve symbol
symbol: method setBound(int, int, int, int)
location: class java.awt.TextArea
area1.setBound(0,0,100,100); //aki sale el tongo apuntando al punto
ke hago????