Here you can find the source of indent(int indentLevel)
public static String indent(int indentLevel)
//package com.java2s; //License from project: Apache License public class Main { public static String indent(int indentLevel) { StringBuilder buffer = new StringBuilder(); for (int i = 0; i < indentLevel; i++) { buffer.append(" "); }// w w w . ja v a 2 s.c o m return buffer.toString(); } }