renamed UserInfo to UserInfo Output
added method IndexOutput
This commit is contained in:
parent
1cc559b416
commit
c638d5b8dd
|
@ -129,10 +129,16 @@ public class TextOutput {
|
||||||
*
|
*
|
||||||
* @param info Benutzerinformationen
|
* @param info Benutzerinformationen
|
||||||
*/
|
*/
|
||||||
public void UserInfo(String info) {
|
public void UserInfoOutput(String info) {
|
||||||
System.out.println(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