Here you can find the source of indent(int level)
private static void indent(int level)
//package com.java2s; //License from project: Open Source License public class Main { private static void indent(int level) { for (int i = 0; i < level; i++) System.out.print(" "); }//from w ww . j a v a 2s . c o m }