vendredi 5 juin 2015

Fehler bei ActionEvent?

Hallo,

ich beschäftige mich gerade mit GUI's und ActionEvents.
Bei diesem Programm kommt es zum Absturz, sobald ich einen der Buttons klicke, ich kann aber einfach keinen Fehler finden! Kann mir da jemand einen Tipp geben?

Java Code:

  1. import javax.swing.*;
  2. import java.awt.event.*;
  3. import java.awt.*;
  4.  
  5.  
  6. public class GUI {
  7.  
  8. JFrame frame;
  9. JLabel label;
  10.  
  11. public void guiErzeugen() {
  12.  
  13. frame = new JFrame();
  14. frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  15.  
  16. JButton button1 = new JButton("Eins");
  17. button1.addActionListener(new Button1Listener());
  18.  
  19. JButton button2 = new JButton("Zwei");
  20. button2.addActionListener(new Button2Listener());
  21.  
  22.  
  23. frame.add(BorderLayout.SOUTH, button1);
  24. frame.add(BorderLayout.CENTER, button2);
  25. frame.setSize(300, 300);
  26. frame.setVisible(true);
  27. }
  28.  
  29. class Button1Listener implements ActionListener {
  30. public void actionPerformed (ActionEvent event) {
  31. button1.setText("geklickt!");
  32. }
  33. }
  34.  
  35.  
  36. class Button2Listener implements ActionListener {
  37. public void actionPerformed (ActionEvent event) {
  38. button2.setText("geklickt!");
  39. }
  40. }
  41.  
  42.  
  43. public static void main(String[] args) {
  44.  
  45. GUI s = new GUI();
  46. s.guiErzeugen();
  47. }
  48. }


Fehler bei ActionEvent?

0 commentaires:

Enregistrer un commentaire