29 lines
522 B
Java
29 lines
522 B
Java
import java.util.ArrayList;
|
|
|
|
public class SystemOut {
|
|
private boolean formatRaw;
|
|
private int columnWidth;
|
|
|
|
public void print(ArrayList text) {
|
|
if (formatRaw) {
|
|
for(int counter = 0; counter < text.size(); counter++) {
|
|
System.out.println("<" + counter + ">: <" + text.get(counter) + ">");
|
|
}
|
|
|
|
}
|
|
else {
|
|
|
|
}
|
|
}
|
|
|
|
|
|
public void formatRaw() {
|
|
formatRaw = true;
|
|
}
|
|
|
|
public void formatFix(int length) {
|
|
formatRaw = false;
|
|
columnWidth = length;
|
|
}
|
|
}
|