diff --git a/src/main/java/Notizbuch.java b/src/main/java/Notizbuch.java new file mode 100644 index 0000000..5b1d8a1 --- /dev/null +++ b/src/main/java/Notizbuch.java @@ -0,0 +1,17 @@ +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; + +import javax.swing.JFrame; + +public class Notizbuch extends JFrame implements ActionListener { + + public Notizbuch() { + + } + + @Override + public void actionPerformed(ActionEvent e) { + + + } +} \ No newline at end of file