Here you can find the source of indent(String s)
public static String indent(String s)
//package com.java2s; //License from project: Apache License public class Main { private static final String indentation = " "; public static String indent(String s) { return s + indentation; }//from ww w.j av a 2s.c o m }