From 8e30d9205dbea3284e7dd25fa4aa6c9b15842e1b Mon Sep 17 00:00:00 2001 From: Marc Dimmerling Date: Fri, 9 Feb 2024 16:46:50 +0100 Subject: [PATCH] Notizbuch --- src/main/java/Notizbuch.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/main/java/Notizbuch.java 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