Compare commits

...

2 Commits

Author SHA1 Message Date
Berat 86c611ad15 made first classed 2024-11-08 16:13:27 +01:00
Berat b24acf191d made change to feature 2024-11-08 15:44:39 +01:00
4 changed files with 19 additions and 2 deletions

View File

@ -2,8 +2,7 @@
public class Test {
public static void main(String[] args) {
System.out.println("ABC");
System.out.println("XYZ");
}
}

View File

@ -0,0 +1,5 @@
package domainBib;
public class Bibliothek {
}

View File

@ -0,0 +1,8 @@
package domainBib;
public abstract class Medium {
private String titel;
private int erscheinungsjahr;
private String fälligkeitsDatum;
private int kennnummer;
}

View File

@ -0,0 +1,5 @@
package guiBib;
public class BibliothekGUI {
}