Compare commits
2 Commits
671d863d26
...
86c611ad15
Author | SHA1 | Date |
---|---|---|
Berat | 86c611ad15 | |
Berat | b24acf191d |
|
@ -2,8 +2,7 @@
|
|||
public class Test {
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println("ABC");
|
||||
|
||||
System.out.println("XYZ");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
package domainBib;
|
||||
|
||||
public class Bibliothek {
|
||||
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
package domainBib;
|
||||
|
||||
public abstract class Medium {
|
||||
private String titel;
|
||||
private int erscheinungsjahr;
|
||||
private String fälligkeitsDatum;
|
||||
private int kennnummer;
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
package guiBib;
|
||||
|
||||
public class BibliothekGUI {
|
||||
|
||||
}
|
Loading…
Reference in New Issue