import javax.swing.*; import java.awt.event.*; import java.awt.*; public class SwingiDialoog4 extends JApplet implements ActionListener{ JButton nupp=new JButton("Vajuta"); JTextField tekst1=new JTextField(); public SwingiDialoog4(){ Container c=getContentPane(); c.setLayout(new GridLayout(2, 1)); c.add(nupp); c.add(tekst1); nupp.addActionListener(this); } public void actionPerformed(ActionEvent e){ tekst1.setText(JOptionPane.showInputDialog("Mis su nimi on?")); } }