continued auther adding in javadoc
This commit is contained in:
parent
a83bf93806
commit
1cfdcf7b52
4 changed files with 8 additions and 3 deletions
|
@ -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.
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue