Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
98aea0fa5d
|
@ -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".
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue