Philipp Kotte 2023-10-11 17:31:15 +02:00
commit 8182bd7faf
1 changed files with 12 additions and 0 deletions

View File

@ -22,6 +22,18 @@ public class Persistenz {
final static String FILE_NAME = "WIZARD_DATA_";
/*------------------------------------------*/
// Attribute jedes Objektes
/*------------------------------------------*/
/*------------------------------------------*/
// Konstruktoren (default und spezifische)
/*------------------------------------------*/
/*------------------------------------------*/
// statische Methoden
/*------------------------------------------*/
public static boolean sindDatenVorhanden(String name) {
File f = new File(FILE_NAME + name + ".ser");
if (f.exists()) {