Here you can find the source of indent(final int size)
public static final String indent(final int size)
//package com.java2s; //License from project: Apache License public class Main { public static final String indent(final int size) { String indent = ""; for (int i = 1; i <= size; i++) { indent += " "; }// w w w.j a v a2 s .c om return indent; } }