Here you can find the source of indentWith(String s)
public static void indentWith(String s)
//package com.java2s; /* Copyright (c) 2006, Sriram Srinivasan * * You may distribute this software under the terms of the license * specified in the file "License"//from w w w . ja v a 2s. c om */ public class Main { public static String indentStr = ""; public static void indentWith(String s) { indentStr = indentStr + s; } }