continued auther adding in javadoc

This commit is contained in:
vysitor 2025-03-23 21:34:56 +01:00
parent a83bf93806
commit 1cfdcf7b52
4 changed files with 8 additions and 3 deletions

View file

@ -17,6 +17,7 @@ public abstract class FileUtils {
/**
* Datei implementiert von Valentin
* Creates a (possibly nested) directory
* @param dir (e.g. "generated" , "level1/level2/level3" etc.
*/

View file

@ -9,7 +9,7 @@ import java.time.format.DateTimeParseException;
public abstract class GeneralUtils {
/**
*
* Datei implementiert von Valentin
* @param integer the integer to be parsed
* @return the parsed integer or null if the integer could not be parsed
*/

View file

@ -3,7 +3,9 @@ package org.texttechnologylab.project.gruppe_05_1.util;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
/**
* Datei implementiert von Valentin
*/
public abstract class PropertiesUtils {
public static Properties readPropertiesFromResource(String propertiesFileName) {

View file

@ -16,6 +16,9 @@ import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.zip.ZipEntry;
/**
* Datei implementiert von Valentin
*/
public abstract class XmlUtils {
@ -43,7 +46,6 @@ public abstract class XmlUtils {
try {
document = builder.parse(xmlInputStream);
// TODO: Error handling...
} catch (SAXException e) {
throw new RuntimeException(e);
} catch (IOException e) {