Here you can find the source of printDoubleIndentw(Object object)
Parameter | Description |
---|---|
object | the object |
public static void printDoubleIndentw(Object object)
//package com.java2s; //License from project: Open Source License public class Main { /**/*from w w w.j a va 2 s . c o m*/ * Prints the double indent. * * @param object * the object */ public static void printDoubleIndentw(Object object) { System.out.println("\t \t" + object); } }