Merge remote-tracking branch 'origin/main'

This commit is contained in:
Andrin Fassbind 2021-11-11 14:05:17 +01:00
commit 98aea0fa5d
1 changed files with 15 additions and 0 deletions

View File

@ -124,6 +124,21 @@ public class TextOutput {
columnWidth = length; columnWidth = length;
} }
/**
* Methode um die Benutzerinformationen auszugeben.
*
* @param info Benutzerinformationen
*/
public void UserInfoOutput(String info) {
System.out.println(info);
}
public void IndexOutput(ArrayList<String> index) {
for (String word : index) {
System.out.println(word);
}
}
/** /**
* Method to give out the Error "Invalid String". * Method to give out the Error "Invalid String".
*/ */