Splitted print class into printUnformated and printFormated.

And fixed errors in print Unformated
This commit is contained in:
Leonardo Brandenberger 2021-11-05 16:16:39 +01:00
parent 5020d4552a
commit a65f1192a2
2 changed files with 9 additions and 4 deletions

View File

@ -29,7 +29,7 @@ public class TextOutput {
int letterLenght = letters.length;
int lettersPrinted = 0;
do {
System.out.println();
//System.out.println();
currentLength = 0;
for (int i = 0; i < columnWidth; i++) {
if (letterLenght > 0) {
@ -39,8 +39,11 @@ public class TextOutput {
currentLength++;
}
}
if(!(letterLenght == 0)){
System.out.println();
}
while (letterLenght > columnWidth);
}
while (letterLenght >= columnWidth);
}
else {
@ -50,9 +53,10 @@ public class TextOutput {
}
System.out.print(word + " ");
currentLength += word.length() + 1;
if(words.length == word
}
}
System.out.println(); //added
}
}
public void formatRaw() {

View File

@ -17,9 +17,10 @@ class TextOutputTest {
textOutput.formatFix(9);
//textOutput.formatRaw();
text = new ArrayList<>();
text.add("1234 12345");
text.add("123456789");
text.add("1234");
text.add("12 12 12");
text.add("1eeeeeee8597389751");
text.add("TextTextTextTextTextTextTextTextTextTextTextTextTextText TextTextTextTextTextTextTextTextTextTextTextText TextTextText");
}