Código:
import java.awt.FlowLayout;
import java.awt.event.*;
import javax.swing.*;
public class traductor2_1 extends JFrame implements ActionListener{
private String world,cat,dog,file,name,age;
private JLabel etiqueta1,etiqueta2;
private JButton boton1,boton2;
private JTextField texto1,texto2;
public traductor2_1() {
super("TRADUCTOR");}
{ setLayout(new FlowLayout());
setSize (300,200);
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
etiqueta1=new JLabel("palabras en ingles");
texto1= new JTextField(15);
etiqueta2=new JLabel("traduccion");
texto2= new JTextField(15);
boton1=new JButton ("Aceptar");
boton2=new JButton("Borrar");
add(etiqueta1);
add(texto1);
add(etiqueta2);
add(texto2);
add(boton1);
add(boton2);
boton1.addActionListener(this);
this.setVisible(true);
}
@Override
public void actionPerformed(ActionEvent e) {
}
}